Package com.nimbusds.ldapsync
Class SelectSingleAttributeValueEvent
- java.lang.Object
-
- java.util.EventObject
-
- com.nimbusds.ldapsync.SyncTaskEvent
-
- com.nimbusds.ldapsync.SelectSingleAttributeValueEvent
-
- All Implemented Interfaces:
Serializable
public class SelectSingleAttributeValueEvent extends SyncTaskEvent
Event indicating the selection of a single attribute value.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor Description SelectSingleAttributeValueEvent(SyncTask source, String message, com.unboundid.ldap.sdk.DN sourceDN, String selectedAttributeValue)Creates a new transform attribute value event.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetSelectedAttributeValue()Gets the selected attribute value.com.unboundid.ldap.sdk.DNgetSourceDN()Gets the distinct name (DN) of the source directory entry.-
Methods inherited from class com.nimbusds.ldapsync.SyncTaskEvent
getMessage, getTimestamp
-
Methods inherited from class java.util.EventObject
getSource, toString
-
-
-
-
Constructor Detail
-
SelectSingleAttributeValueEvent
public SelectSingleAttributeValueEvent(SyncTask source, String message, com.unboundid.ldap.sdk.DN sourceDN, String selectedAttributeValue)
Creates a new transform attribute value event.- Parameters:
source- The event source.message- The event message.sourceDN- The distinguished name (DN) of the source directory entry.selectedAttributeValue- The selected attribute value.
-
-
Method Detail
-
getSourceDN
public com.unboundid.ldap.sdk.DN getSourceDN()
Gets the distinct name (DN) of the source directory entry.- Returns:
- The source entry DN.
-
getSelectedAttributeValue
public String getSelectedAttributeValue()
Gets the selected attribute value.- Returns:
- The selected attribute value.
-
-