Uses of Class
com.atlassian.bamboo.plan.vcsRevision.PlanVcsRevisionHistoryItem
-
Packages that use PlanVcsRevisionHistoryItem Package Description com.atlassian.bamboo.migration.stream com.atlassian.bamboo.plan.vcsRevision -
-
Uses of PlanVcsRevisionHistoryItem in com.atlassian.bamboo.migration.stream
Methods in com.atlassian.bamboo.migration.stream that return PlanVcsRevisionHistoryItem Modifier and Type Method Description protected @NotNull PlanVcsRevisionHistoryItem
PlanVcsRevisionHistoryMapper. createItemInstance(org.codehaus.staxmate.in.SMInputCursor inputCursor)
Methods in com.atlassian.bamboo.migration.stream with parameters of type PlanVcsRevisionHistoryItem Modifier and Type Method Description void
PlanVcsRevisionHistoryMapper. afterImportListItem(@NotNull org.codehaus.staxmate.in.SMInputCursor inputCursor, @NotNull List<PlanVcsRevisionHistoryItem> artifactDefinitions, @NotNull PlanVcsRevisionHistoryItem object, long objectIndex, @NotNull org.hibernate.Session session)
protected void
PlanVcsRevisionHistoryMapper. exportProperties(@NotNull org.codehaus.staxmate.out.SMOutputElement outputElement, @NotNull PlanVcsRevisionHistoryItem object, @NotNull org.hibernate.Session session, ExportDetailsBean exportDetailsBean)
protected void
PlanVcsRevisionHistoryMapper. importProperties(@NotNull PlanVcsRevisionHistoryItem object, @NotNull org.codehaus.staxmate.in.SMInputCursor inputCursor, @NotNull org.hibernate.Session session)
Method parameters in com.atlassian.bamboo.migration.stream with type arguments of type PlanVcsRevisionHistoryItem Modifier and Type Method Description void
PlanVcsRevisionHistoryMapper. afterImportListItem(@NotNull org.codehaus.staxmate.in.SMInputCursor inputCursor, @NotNull List<PlanVcsRevisionHistoryItem> artifactDefinitions, @NotNull PlanVcsRevisionHistoryItem object, long objectIndex, @NotNull org.hibernate.Session session)
-
Uses of PlanVcsRevisionHistoryItem in com.atlassian.bamboo.plan.vcsRevision
Fields in com.atlassian.bamboo.plan.vcsRevision with type parameters of type PlanVcsRevisionHistoryItem Modifier and Type Field Description static javax.persistence.metamodel.SingularAttribute<PlanVcsRevisionHistoryItem,Integer>
PlanVcsRevisionHistoryItem_. buildNumber
static javax.persistence.metamodel.SingularAttribute<PlanVcsRevisionHistoryItem,String>
PlanVcsRevisionHistoryItem_. customXmlData
static javax.persistence.metamodel.SingularAttribute<PlanVcsRevisionHistoryItem,PlanKey>
PlanVcsRevisionHistoryItem_. planKey
static javax.persistence.metamodel.SingularAttribute<PlanVcsRevisionHistoryItem,Long>
PlanVcsRevisionHistoryItem_. repositoryId
static javax.persistence.metamodel.SingularAttribute<PlanVcsRevisionHistoryItem,String>
PlanVcsRevisionHistoryItem_. vcsRevisionKey
Methods in com.atlassian.bamboo.plan.vcsRevision that return PlanVcsRevisionHistoryItem Modifier and Type Method Description @Nullable PlanVcsRevisionHistoryItem
PlanVcsRevisionHistoryDao. findVcsRevisionHistoryItem(@NotNull PlanKey planKey, long repositoryId, int buildNumber)
Retrieves a specific history item.PlanVcsRevisionHistoryItem
PlanVcsRevisionHistoryHibernateDao. findVcsRevisionHistoryItem(@NotNull PlanKey planKey, long repositoryId, int buildNumber)
Methods in com.atlassian.bamboo.plan.vcsRevision that return types with arguments of type PlanVcsRevisionHistoryItem Modifier and Type Method Description @NotNull List<PlanVcsRevisionHistoryItem>
PlanVcsRevisionHistoryDao. findLatestVcsRevisionHistoryItems(@NotNull PlanKey planKey)
Retrieves a list of history items with the highest build number.@NotNull List<PlanVcsRevisionHistoryItem>
PlanVcsRevisionHistoryHibernateDao. findLatestVcsRevisionHistoryItems(@NotNull PlanKey planKey)
@NotNull List<PlanVcsRevisionHistoryItem>
PlanVcsRevisionHistoryDao. findLatestVcsRevisionHistoryItemsBeforeBuildNumber(@NotNull PlanKey planKey, int buildNumber)
Retrieves a list of history items with the highest build number that is lower than the argument.@NotNull List<PlanVcsRevisionHistoryItem>
PlanVcsRevisionHistoryHibernateDao. findLatestVcsRevisionHistoryItemsBeforeBuildNumber(@NotNull PlanKey planKey, int buildNumber)
Methods in com.atlassian.bamboo.plan.vcsRevision with parameters of type PlanVcsRevisionHistoryItem Modifier and Type Method Description void
PlanVcsRevisionHistoryDao. createChangeDetectionHistoryItem(@NotNull PlanVcsRevisionHistoryItem planVcsRevisionHistoryItem)
Inserts new history item.void
PlanVcsRevisionHistoryHibernateDao. createChangeDetectionHistoryItem(@NotNull PlanVcsRevisionHistoryItem planVcsRevisionHistoryItem)
void
PlanVcsRevisionHistoryDao. createOrUpdateChangeDetectionHistoryItem(@NotNull PlanVcsRevisionHistoryItem planVcsRevisionHistoryItem)
If item with the same plan key and build number exists it is updated with vcs information from the current one.void
PlanVcsRevisionHistoryHibernateDao. createOrUpdateChangeDetectionHistoryItem(@NotNull PlanVcsRevisionHistoryItem planVcsRevisionHistoryItem)
Method parameters in com.atlassian.bamboo.plan.vcsRevision with type arguments of type PlanVcsRevisionHistoryItem Modifier and Type Method Description long
PlanVcsRevisionHistoryHibernateStandaloneDao. scrollPlanVcsRevisionHistoryItemsForExport(@NotNull Consumer<PlanVcsRevisionHistoryItem> consumer)
long
PlanVcsRevisionHistoryStandaloneDao. scrollPlanVcsRevisionHistoryItemsForExport(@NotNull Consumer<PlanVcsRevisionHistoryItem> consumer)
Scroll through and execute function for each of PlanVcsRevisionHistoryItem Objects passed to function are not fully initialized.
-