Interface IdProxyManager
- All Superinterfaces:
AutoCloseable, Closeable, IdProfile, OsidProfile, OsidProxyManager, OsidProxyManager, Sourceable
This manager provides access to the available sessions of the Id
service. Methods in this manager support the passing of a Proxy
object for the purpose of pasisng information from a server envrionment.
Ids are created through the IdAdminSession which provides
the means for creating a unique identifier. The IdBrowserSession
can be used for mapping one Id to another in addition to getting a
list of the assigned identifiers.-
Method Summary
Modifier and TypeMethodDescriptiongetIdAdminSession(Proxy proxy) Gets the session associated with the id administrative service.Gets anIdnProxyManager.getIdIssueSession(Proxy proxy) Gets the session associated with the id issue service.getIdLookupSession(Proxy proxy) 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 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 OsidProxyManager
closeMethods inherited from interface OsidProxyManager
changeBranch, initialize, rollbackServiceModifier and TypeMethodDescriptionvoidchangeBranch(Id branchId, Proxy proxy) Changes the service branch.voidinitialize(OsidRuntimeManager runtime) Initializes this manager.rollbackService(Date rollbackTime, Proxy proxy) Rolls back this service to a point in time.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.- Parameters:
proxy- a proxy- Returns:
- an
IdLookupSession - Throws:
NullArgumentException-proxyisnullOperationFailedException- 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.- Parameters:
proxy- a proxy- Returns:
- an
IdIssueSession - Throws:
NullArgumentException-proxyisnullOperationFailedException-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 administrative service.- Parameters:
proxy- a proxy- Returns:
- an
IdAdminSession - Throws:
NullArgumentException-proxyisnullOperationFailedException-unable to complete requestUnimplementedException-supportsIdAdmin()isfalse- Compliance:
optional- This method must be implemented if {@code supportsIdAdmin()} is {@code true} .
-
getIdBatchProxyManager
Gets anIdnProxyManager.- Returns:
- an
IdBatchProxyManager - Throws:
OperationFailedException- unable to complete requestUnimplementedException-supportsIdBatch()isfalse- Compliance:
optional- This method must be implemented if {@code supportsIdBatch()} is {@code true} .
-