mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

neil_a_wilson
25.40.2007 44aad3f84d2a820094f3b5e73722778edc8c23f5
opends/src/server/org/opends/server/api/AttributeValueDecoder.java
@@ -26,17 +26,20 @@
 */
package org.opends.server.api;
import org.opends.server.types.AttributeValue;
import org.opends.server.types.DirectoryException;
/**
 * A factory interface for decoding attribute values into objects.
 *
 * @param <T>
 *          Decode the attribute value to an object of this type.
 * @param  <T>  Decode the attribute value to an object of this type.
 */
public interface AttributeValueDecoder<T> {
public interface AttributeValueDecoder<T>
{
  /**
   * Decode the specified attribute value to an object of type T.
   *
@@ -48,3 +51,4 @@
   */
  T decode(AttributeValue value) throws DirectoryException;
}