All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ldaptive.schema.io.AbstractSchemaElementValueTranscoder Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
/* See LICENSE for licensing and NOTICE for copyright. */
package org.ldaptive.schema.io;

import org.ldaptive.io.AbstractStringValueTranscoder;
import org.ldaptive.schema.SchemaElement;

/**
 * Base class for schema element value transcoders.
 *
 * @param    type of schema element
 *
 * @author  Middleware Services
 */
public abstract class AbstractSchemaElementValueTranscoder
  extends AbstractStringValueTranscoder
{


  @Override
  public String encodeStringValue(final T value)
  {
    return value.format();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy