Package oracle.rules.sdk2.repository
Class MDSRepository
java.lang.Object
oracle.rules.sdk2.repository.MDSRepository
- All Implemented Interfaces:
EventListener
,oracle.mds.notifications.MOChangeListener
An
MDSRepository
instance represents an MDS configuration
for an application. That configuration is established in the adf-config.xml
file packaged with the application. An instance is obtained from
Repositories
. It has methods for
- obtaining a
DictionaryFinder
, - obtaining a
DictionaryExplorer
, - obtaining a
DictionaryUpdater
, - obtaining an
MDSSandbox for sandbox support
, - and registering/unregistering a listener for updates to dictionaries in the MDS repository.
MDSRepository
.-
Method Summary
Modifier and TypeMethodDescriptiongetExplorer
(Locale locale, Principal principal) Get a DictionaryExplorer for this MDS repository.getExplorer
(Locale locale, Principal principal, boolean forceTip, String sandboxName) Get a DictionaryExplorer for this MDS repository.Get an AbstractDictionaryFinder for this MDS repository.Get an AbstractDictionaryFinder for this MDS repository.getName()
Get the name of this MDSRepository instance.Get access to MDS sandbox support for this MDS repository.getUpdater
(Locale locale, Principal principal) Get a DictionaryUpdater for this MDS repository.getUpdater
(Locale locale, Principal principal, boolean forceTip, String sandboxName) Get a DictionaryUpdater for this MDS repository.boolean
Determine if MDS sandboxes are supported.void
metadataObjectChanged
(oracle.mds.notifications.MOChangeEvent event, oracle.mds.core.MDSInstance mdsInstance) void
registerListener
(MDSRepositoryListener listener) Register a listener with this MDS repository.void
unregisterListener
(MDSRepositoryListener listener) Unregister a listener with this MDS repository.
-
Method Details
-
getExplorer
public DictionaryExplorer getExplorer(Locale locale, Principal principal) throws RepositoryException Get a DictionaryExplorer for this MDS repository.- Parameters:
locale
- The specific locale to use. If null, the default is used.principal
- The identity to associate with changes. May be null.- Returns:
- the DictionaryExplorer
- Throws:
RepositoryException
- if an error occurs
-
getExplorer
public DictionaryExplorer getExplorer(Locale locale, Principal principal, boolean forceTip, String sandboxName) throws RepositoryException Get a DictionaryExplorer for this MDS repository.- Parameters:
locale
- The specific locale to use. If null, the default is used.principal
- The identity to associate with changes. May be null.forceTip
- A value of true will ignore labels specified in the MDS configuration so that the latest version, the tip, may be accessed.sandboxName
- The name of the MDS sandbox to access. May be null.- Returns:
- the DictionaryExplorer
- Throws:
RepositoryException
- if an error occurs
-
getFinder
Get an AbstractDictionaryFinder for this MDS repository.- Parameters:
locale
- The specific locale to use. If null, the default is used.- Returns:
- the AbstractDictionaryFinder
- Throws:
RepositoryException
- if an error occurs
-
getFinder
public AbstractDictionaryFinder getFinder(Locale locale, boolean forceTip, String sandboxName) throws RepositoryException Get an AbstractDictionaryFinder for this MDS repository.- Parameters:
locale
- The specific locale to use. If null, the default is used.forceTip
- A value of true will ignore labels specified in the MDS configuration so that the latest version, the tip, may be accessed.sandboxName
- The name of the MDS sandbox to access. May be null.- Returns:
- the AbstractDictionaryFinder
- Throws:
RepositoryException
- if an error occurs
-
getUpdater
Get a DictionaryUpdater for this MDS repository.- Parameters:
locale
- The specific locale to use. If null, the default is used.principal
- The identity to associate with changes. May be null.- Returns:
- the DictionaryUpdater
- Throws:
RepositoryException
- if an error occurs
-
getUpdater
public DictionaryUpdater getUpdater(Locale locale, Principal principal, boolean forceTip, String sandboxName) throws RepositoryException Get a DictionaryUpdater for this MDS repository.- Parameters:
locale
- The specific locale to use. If null, the default is used.principal
- The identity to associate with changes. May be null.forceTip
- A value of true will ignore labels specified in the MDS configuration so that the latest version, the tip, may be accessed.sandboxName
- The name of the MDS sandbox to access. May be null.- Returns:
- the DictionaryUpdater
- Throws:
RepositoryException
- if an error occurs
-
getSandboxSupport
Get access to MDS sandbox support for this MDS repository.- Returns:
- an instance of MDSSandbox
- Throws:
RepositoryException
- if an error occurs
-
registerListener
Register a listener with this MDS repository.- Parameters:
listener
- The MDSRepositoryListener implementation that will receive notifications of changes to the repository.- Throws:
RepositoryException
- if an error occurs
-
unregisterListener
Unregister a listener with this MDS repository.- Parameters:
listener
- The MDSRepositoryListener implementation to unregister.- Throws:
RepositoryException
- if an error occurs
-
getName
Get the name of this MDSRepository instance.- Returns:
- the name of this MDSRepository instance.
-
isSandboxSupported
public boolean isSandboxSupported()Determine if MDS sandboxes are supported.- Returns:
- true if MDS sandboxes are supported, false otherwise.
-
metadataObjectChanged
public void metadataObjectChanged(oracle.mds.notifications.MOChangeEvent event, oracle.mds.core.MDSInstance mdsInstance) throws oracle.mds.exception.MDSException - Specified by:
metadataObjectChanged
in interfaceoracle.mds.notifications.MOChangeListener
- Throws:
oracle.mds.exception.MDSException
-