Package com.atlassian.bamboo.specs
Interface BambooSpecsSourceDao
-
- All Known Implementing Classes:
BambooSpecsSourceDaoImpl
@Internal public interface BambooSpecsSourceDao
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
detachPlanFromRss(long planId)
Optional<VcsBambooSpecsSource>
findBambooSpecsSourceForPlan(long planId)
Optional<VcsBambooSpecsSource>
findById(long specsStateId)
Map<Long,VcsBambooSpecsSource>
findSpecsSourcesForAllPlans()
void
saveOrUpdate(VcsBambooSpecsSource vcsLocationBambooSpecsState)
void
scrollPlanVcsBambooSpecsSourceForExport(Consumer<PlanVcsBambooSpecsSourceDto> consumer)
void
scrollVcsBambooSpecsSourceForExport(Consumer<VcsBambooSpecsSource> consumer)
void
updateBambooSpecsSourceForPlan(@NotNull Chain plan, @NotNull VcsBambooSpecsSource vcsBambooSpecsSourceId)
-
-
-
Method Detail
-
saveOrUpdate
void saveOrUpdate(VcsBambooSpecsSource vcsLocationBambooSpecsState)
-
findById
Optional<VcsBambooSpecsSource> findById(long specsStateId)
-
scrollVcsBambooSpecsSourceForExport
void scrollVcsBambooSpecsSourceForExport(Consumer<VcsBambooSpecsSource> consumer)
-
scrollPlanVcsBambooSpecsSourceForExport
void scrollPlanVcsBambooSpecsSourceForExport(Consumer<PlanVcsBambooSpecsSourceDto> consumer)
-
findBambooSpecsSourceForPlan
Optional<VcsBambooSpecsSource> findBambooSpecsSourceForPlan(long planId)
-
updateBambooSpecsSourceForPlan
void updateBambooSpecsSourceForPlan(@NotNull @NotNull Chain plan, @NotNull @NotNull VcsBambooSpecsSource vcsBambooSpecsSourceId)
-
findSpecsSourcesForAllPlans
Map<Long,VcsBambooSpecsSource> findSpecsSourcesForAllPlans()
-
detachPlanFromRss
void detachPlanFromRss(long planId)
-
-