Class AbstractConfiguration
java.lang.Object
org.identityconnectors.framework.spi.AbstractConfiguration
- All Implemented Interfaces:
Configuration
Convenient base-class for Configuration objects to extend.
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic interface
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal void
final ConnectorMessages
Should return themessage catalog
that is set byConfiguration.setConnectorMessages(ConnectorMessages)
.final void
setConnectorMessages
(ConnectorMessages messages) Sets themessage catalog
instance that allows the Connector to localize messages.Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.identityconnectors.framework.spi.Configuration
validate
-
Constructor Details
-
AbstractConfiguration
public AbstractConfiguration()
-
-
Method Details
-
getConnectorMessages
Description copied from interface:Configuration
Should return themessage catalog
that is set byConfiguration.setConnectorMessages(ConnectorMessages)
.- Specified by:
getConnectorMessages
in interfaceConfiguration
- Returns:
- the
ConnectorMessages
instance.
-
setConnectorMessages
Description copied from interface:Configuration
Sets themessage catalog
instance that allows the Connector to localize messages. This method is called before any bean property setter, theConfiguration.validate()
method or theConfiguration.getConnectorMessages()
method.- Specified by:
setConnectorMessages
in interfaceConfiguration
- Parameters:
messages
- the message catalog.
-
addChangeCallback
-