Interface IdManager
- All Superinterfaces:
AutoCloseable, Closeable, IdProfile, OsidManager, OsidManager, OsidProfile, Sourceable
This manager provides access to the available sessions of the Id
service. Ids are created through the IdAdminSession which
provides the means for creating a unique identifier.
The IdLookupSession can be used for mapping one Id to
another in addition to getting a list of the assigned identifiers.
-
Method Summary
Modifier and TypeMethodDescriptionGets the session associated with the id admin service.Gets anIdBatchManager.Gets the session associated with the id issue service.Gets the session associated with the id lookup service.Methods inherited from interface IdProfile
supportsIdAdmin, supportsIdBatch, supportsIdIssue, supportsIdLookupModifier and TypeMethodDescriptionbooleanTests if anIdadministrative service is supported.booleanTests for the availability of an Id batch service.booleanTests if anIdissue service is supported.booleanTests ifIdlookup is supported.Methods inherited from interface OsidManager
closeMethods inherited from interface OsidManager
changeBranch, initialize, rollbackServiceModifier and TypeMethodDescriptionvoidchangeBranch(Id branchId) Changes the service branch.voidinitialize(OsidRuntimeManager runtime) Initializes this manager.rollbackService(Date rollbackTime) Rolls back this service to a point in time.Methods inherited from interface OsidProfile
getBranch, getBranchId, getDescription, getDisplayName, getId, getLocales, getProxyRecordTypes, getReleaseDate, getVersion, supportsJournalBranching, supportsJournalRollback, supportsOSIDVersion, supportsProxyRecordTypeModifier and TypeMethodDescriptionGets this service branch.Gets theBranch Idrepresenting this service branch.Gets a description of this service implementation.Gets a display name for this service implementation.getId()Gets an identifier for this service implementation.Gets the locales supported in this service.Gets the proxy recordTypessupported in this service.Gets the date this service implementation was released.Gets the version of this service implementation.booleanTest for support of a journal branching service.booleanTest for support of a journaling rollback service.booleansupportsOSIDVersion(Version version) Test for support of an OSID specification version.booleansupportsProxyRecordType(Type proxyRecordType) Test for support of a proxy type.Methods inherited from interface Sourceable
getBranding, getBrandingIds, getLicense, getProvider, getProviderIdModifier and TypeMethodDescriptionGets a branding, such as an image or logo, expressed using theAssetinterface.Gets the branding assetIds.Gets the terms of usage.Gets theResourcerepresenting the provider.Gets theIdof the provider.
-
Method Details
-
getIdLookupSession
Gets the session associated with the id lookup service.- Returns:
- an
IdLookupSession - Throws:
OperationFailedException- unable to complete requestUnimplementedException-supportsIdLookup()isfalse- Compliance:
optional- This method must be implemented if {@code supportsIdLookup()} is {@code true} .
-
getIdIssueSession
Gets the session associated with the id issue service.- Returns:
- an
IdIssueSession - Throws:
OperationFailedException- unable to complete requestUnimplementedException-supportsIdIssue()isfalse- Compliance:
optional- This method must be implemented if {@code supportsIdIssue()} is {@code true} .
-
getIdAdminSession
Gets the session associated with the id admin service.- Returns:
- an
IdAdminSession - Throws:
OperationFailedException- unable to complete requestUnimplementedException-supportsIdAdmin()isfalse- Compliance:
optional- This method must be implemented if {@code supportsIdAdmin()} is {@code true} .
-
getIdBatchManager
Gets anIdBatchManager.- Returns:
- an
IdBatchManager - Throws:
OperationFailedException- unable to complete requestUnimplementedException-supportsIdBatch()isfalse- Compliance:
optional- This method must be implemented if {@code supportsIdBatch()} is {@code true} .
-