Uses of Class
hudson.plugins.project_inheritance.util.VersionedObjectStore.Version
-
Packages that use VersionedObjectStore.Version Package Description hudson.plugins.project_inheritance.projects hudson.plugins.project_inheritance.util -
-
Uses of VersionedObjectStore.Version in hudson.plugins.project_inheritance.projects
Methods in hudson.plugins.project_inheritance.projects that return types with arguments of type VersionedObjectStore.Version Modifier and Type Method Description Deque<VersionedObjectStore.Version>
InheritanceProject. getStableVersions()
Deque<VersionedObjectStore.Version>
InheritanceProject. getVersions()
Methods in hudson.plugins.project_inheritance.projects with parameters of type VersionedObjectStore.Version Modifier and Type Method Description protected void
InheritanceProject. dumpConfigToVersion(VersionedObjectStore.Version v)
This method implements the actual association of a set of objects with a given version. -
Uses of VersionedObjectStore.Version in hudson.plugins.project_inheritance.util
Methods in hudson.plugins.project_inheritance.util that return VersionedObjectStore.Version Modifier and Type Method Description VersionedObjectStore.Version
VersionedObjectStore. createNextVersion()
This method creates the next version and copies all key/value object entries from the previous one.VersionedObjectStore.Version
VersionedObjectStore. createNextVersionAsEmpty()
Creates the next version with an empty key/value object mapping.VersionedObjectStore.Version
VersionedObjectStore. createNextVersionWithMapping(Map<String,Object> map)
VersionedObjectStore.Version
VersionedObjectStore. getLatestStable()
VersionedObjectStore.Version
VersionedObjectStore. getLatestVersion()
This retrieves the actual last versioned object.VersionedObjectStore.Version
VersionedObjectStore. getNearestTo(Long timestamp)
VersionedObjectStore.Version
VersionedObjectStore. getVersion(Long id)
Methods in hudson.plugins.project_inheritance.util that return types with arguments of type VersionedObjectStore.Version Modifier and Type Method Description SortedSet<VersionedObjectStore.Version>
VersionedObjectStore. getAllVersions()
Returns a new set of all versions, sorted by their ID in ascending order.LinkedList<VersionedObjectStore.Version>
VersionedObjectStore. getAllVersionsSince(Long sinceVersionId)
gets all the more recent version ids since the sinceVersionIdMethods in hudson.plugins.project_inheritance.util with parameters of type VersionedObjectStore.Version Modifier and Type Method Description boolean
VersionedObjectStore. areIdentical(VersionedObjectStore.Version v1, VersionedObjectStore.Version v2)
Object
VersionedObjectStore. getObject(VersionedObjectStore.Version version, String key)
boolean
VersionedObjectStore. setObjectFor(VersionedObjectStore.Version v, String key, Object value)
void
VersionedObjectStore. undoVersion(VersionedObjectStore.Version v)
This function removes the given version from the internal storage, if it is the last version that is present.Constructors in hudson.plugins.project_inheritance.util with parameters of type VersionedObjectStore.Version Constructor Description VersionsNotification(boolean isNewest, boolean isStable, boolean stablesBefore, boolean stablesAfter, VersionedObjectStore.Version latestStableVersion)
-