org.ldaptive.beans.DnValueMutator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ldaptive-beans Show documentation
Show all versions of ldaptive-beans Show documentation
Provides a mapping, persistence, and code generation API for reading and writing POJOs to an LDAP directory
/* See LICENSE for licensing and NOTICE for copyright. */
package org.ldaptive.beans;
/**
* Interface for mutating the DN value on an arbitrary object.
*
* @author Middleware Services
*/
public interface DnValueMutator
{
/**
* Returns the DN value for the supplied object.
*
* @param object to return the DN of
*
* @return DN value
*/
String getValue(Object object);
/**
* Set the DN value for the supplied object.
*
* @param object to set the DN on
* @param value of the DN
*/
void setValue(Object object, String value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy