Uses of Interface
de.aristaflow.adept2.model.activitymodel.Identifier
-
Packages that use Identifier Package Description de.aristaflow.adept2.core.activityrepository de.aristaflow.adept2.model.activitymodel TODO This is completely outdated. -
-
Uses of Identifier in de.aristaflow.adept2.core.activityrepository
Methods in de.aristaflow.adept2.core.activityrepository that return Identifier Modifier and Type Method Description Identifier
IdentifierManager. getDevelopmentIdentifier(SessionToken session, UUID identifierID, long branch)
Gets the development version of the designated identifier in the designated branch.Identifier
IdentifierManager. getIdentifierRevision(SessionToken session, UUID identifierID, long revision)
Gets the designated revision of the designated identifier.Identifier
IdentifierManager. getLatestIdentifier(SessionToken session, UUID identifierID)
Gets the latest revision of the designated identifier.Methods in de.aristaflow.adept2.core.activityrepository that return types with arguments of type Identifier Modifier and Type Method Description Collection<Identifier>
IdentifierManager. getDevelopmentIdentifiers(SessionToken session, long branch)
Gets the development versions of all identifiers in the designated branch known by this manager.RemoteIterator<List<Identifier>>
IdentifierManager. getDevelopmentIdentifiersIterator(SessionToken session, long branch)
The same asIdentifierManager.getDevelopmentIdentifiers(SessionToken, long)
but with partial retrieval of the identifiers.List<Identifier>
IdentifierManager. getIdentifierRevisions(SessionToken session, UUID identifierID)
Gets all revisions of the designated identifier or an empty list in case there are no revisions yet.RemoteIterator<List<Identifier>>
IdentifierManager. getIdentifierRevisionsIterator(SessionToken session, UUID identifierID)
The same asIdentifierManager.getIdentifierRevisions(SessionToken, UUID)
but with partial retrieval of the identifiers.Collection<Identifier>
IdentifierManager. getIdentifiersRevision(SessionToken session, long revision)
Gets all identifiers the designated revision known by this manager.RemoteIterator<List<Identifier>>
IdentifierManager. getIdentifiersRevisionIterator(SessionToken session, long revision)
The same asIdentifierManager.getIdentifiersRevision(SessionToken, long)
but with partial retrieval of the identifiers.Collection<Identifier>
IdentifierManager. getLatestIdentifiers(SessionToken session, boolean productionOnly)
Gets the latest revisions (IN_PRODUCTION
and/orOUTDATED
) of all identifiers known by this manager.RemoteIterator<List<Identifier>>
IdentifierManager. getLatestIdentifiersIterator(SessionToken session, boolean productionOnly)
The same asIdentifierManager.getLatestIdentifiers(SessionToken, boolean)
but with partial retrieval of the identifiers.Methods in de.aristaflow.adept2.core.activityrepository with parameters of type Identifier Modifier and Type Method Description void
IdentifierManager. storeDevelopmentIdentifier(SessionToken session, Identifier identifier, long branch)
Stores the designated identifier in the designated branch and sets itIN_DEVELOPMENT
if not done yet. -
Uses of Identifier in de.aristaflow.adept2.model.activitymodel
Methods in de.aristaflow.adept2.model.activitymodel that return Identifier Modifier and Type Method Description Identifier
ActivityModelFactory. createIdentifier(UUID id, String name, String description, long revision, State state, PluginDataContainer pluginData, Map<String,String> userAttributes)
Methods in de.aristaflow.adept2.model.activitymodel that return types with arguments of type Identifier Modifier and Type Method Description Map<UUID,Identifier>
ActivityTemplate. getIdentifiers()
Gets all identifiers of all (defined) parameters of this activity template independent from the access type of the parameters.Methods in de.aristaflow.adept2.model.activitymodel with parameters of type Identifier Modifier and Type Method Description static boolean
AMTools. areEqual(Identifier id1, Identifier id2)
Compares twoIdentifier
s for functional equality, i.e. ignoring their state and revision.
-