Interface ValueEnablerConfigurationSession
- All Superinterfaces:
AutoCloseable, Closeable, OsidSession, OsidSession
This session provides methods to retrieve ValueEnabler to
Configuration mappings. A ValueEnabler may appear in
multiple Configuration objects. Each configuration may have its
own authorizations governing who is allowed to look at it.
This lookup session defines several views:
- comparative view: elements may be silently omitted or re-ordered
- plenary view: provides a complete result set or is an error condition
Like all OsidSessions,
ValueEnablerConfigurationSessions are dedicated to single processing
threads and a single authenticated user.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanTests if this user can perform lookups of value enabler/configuration mappings.getConfigurationIdsByValueEnabler(Id valueEnablerId) Gets theConfigurationIdsmapped to aValueEnabler.getConfigurationsByValueEnabler(Id valueEnablerId) Gets theConfigurationsmapped to aValueEnabler.getValueEnablerIdsByConfiguration(Id configurationId) Gets the list ofValueEnablerIdsassociated with anConfiguration.getValueEnablerIdsByConfigurations(IdList configurationIds) Gets the list ofValueEnabler Idscorresponding to a list ofConfigurations.getValueEnablersByConfiguration(Id configurationId) Gets the list of value enablers associated with anConfiguration.getValueEnablersByConfigurations(IdList configurationIds) Gets the list of value enablers corresponding to a list ofConfigurations.voidThe returns from the lookup methods may omit or translate elements based on this session, such as authorization, and not result in an error.voidA complete view of theValueEnablerandConfigurationreturns is desired.Methods inherited from interface OsidSession
closeMethods inherited from interface OsidSession
getAuthenticatedAgent, getAuthenticatedAgentId, getClockRate, getDate, getEffectiveAgent, getEffectiveAgentId, getFormatTypes, getLocales, isAuthenticated, startTransaction, supportsTransactions
-
Method Details
-
canLookupValueEnablerConfigurationMappings
boolean canLookupValueEnablerConfigurationMappings()Tests if this user can perform lookups of value enabler/configuration mappings. A return of true does not guarantee successful authorization. A return of false indicates that it is known lookup methods in this session will result in aPERMISSION_DENIED. This is intended as a hint to an application that may opt not to offer lookup operations to unauthorized users.- Returns:
falseif looking up mappings is not authorized,trueotherwise- Compliance:
mandatory- This method must be implemented.
-
useComparativeValueEnablerConfigurationView
void useComparativeValueEnablerConfigurationView()The returns from the lookup methods may omit or translate elements based on this session, such as authorization, and not result in an error. This view is used when greater interoperability is desired at the expense of precision.- Compliance:
mandatory- This method must be implemented.
-
usePlenaryValueEnablerConfigurationView
void usePlenaryValueEnablerConfigurationView()A complete view of theValueEnablerandConfigurationreturns is desired. Methods will return what is requested or result in an error. This view is used when greater precision is desired at the expense of interoperability.- Compliance:
mandatory- This method must be implemented.
-
getValueEnablerIdsByConfiguration
IdList getValueEnablerIdsByConfiguration(Id configurationId) throws NotFoundException, OperationFailedException, PermissionDeniedException Gets the list ofValueEnablerIdsassociated with anConfiguration.- Parameters:
configurationId-Idof theConfiguration- Returns:
- list of related value enabler
Ids - Throws:
NotFoundException-configurationIdis not foundNullArgumentException-configurationIdisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
getValueEnablersByConfiguration
ValueEnablerList getValueEnablersByConfiguration(Id configurationId) throws NotFoundException, OperationFailedException, PermissionDeniedException Gets the list of value enablers associated with anConfiguration.- Parameters:
configurationId-Idof theConfiguration- Returns:
- list of related value enablers
- Throws:
NotFoundException-configurationIdis not foundNullArgumentException-configurationIdisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
getValueEnablerIdsByConfigurations
IdList getValueEnablerIdsByConfigurations(IdList configurationIds) throws OperationFailedException, PermissionDeniedException Gets the list ofValueEnabler Idscorresponding to a list ofConfigurations.- Parameters:
configurationIds- list of configurationIds- Returns:
- list of value enabler
Ids - Throws:
NullArgumentException-configurationIdsisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
getValueEnablersByConfigurations
ValueEnablerList getValueEnablersByConfigurations(IdList configurationIds) throws OperationFailedException, PermissionDeniedException Gets the list of value enablers corresponding to a list ofConfigurations.- Parameters:
configurationIds- list of configurationIds- Returns:
- list of value enablers
- Throws:
NullArgumentException-configurationIdsisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
getConfigurationIdsByValueEnabler
IdList getConfigurationIdsByValueEnabler(Id valueEnablerId) throws NotFoundException, OperationFailedException, PermissionDeniedException Gets theConfigurationIdsmapped to aValueEnabler.- Parameters:
valueEnablerId-Idof aValueEnabler- Returns:
- list of configurations
- Throws:
NotFoundException-valueEnablerIdis not foundNullArgumentException-valueEnablerIdisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
getConfigurationsByValueEnabler
ConfigurationList getConfigurationsByValueEnabler(Id valueEnablerId) throws NotFoundException, OperationFailedException, PermissionDeniedException Gets theConfigurationsmapped to aValueEnabler.- Parameters:
valueEnablerId-Idof aValueEnabler- Returns:
- list of configurations
- Throws:
NotFoundException-valueEnablerIdis not foundNullArgumentException-valueEnablerIdisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-