Package org.ldaptive.beans
Interface DnValueMutator
-
- All Known Implementing Classes:
AbstractClassDescriptor.SimpleDnValueMutator
,DefaultDnValueMutator
,SpelDnValueMutator
public interface DnValueMutator
Interface for mutating the DN value on an arbitrary object.- Author:
- Middleware Services
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getValue(java.lang.Object object)
Returns the DN value for the supplied object.void
setValue(java.lang.Object object, java.lang.String value)
Set the DN value for the supplied object.
-
-
-
Method Detail
-
getValue
java.lang.String getValue(java.lang.Object object)
Returns the DN value for the supplied object.- Parameters:
object
- to return the DN of- Returns:
- DN value
-
setValue
void setValue(java.lang.Object object, java.lang.String value)
Set the DN value for the supplied object.- Parameters:
object
- to set the DN onvalue
- of the DN
-
-