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

org.ldaptive.schema.SchemaFunction Maven / Gradle / Ivy

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

/**
 * Marker interface for a schema function.
 *
 * @author  Middleware Services
 */
public interface SchemaFunction
{


  /**
   * Parses the supplied string representation of a schema element.
   *
   *
   * @param    type of schema element
   *
   * @param  type  class type of schema element
   * @param  definition  to parse
   *
   * @return parsed schema element
   *
   * @throws  SchemaParseException  if the supplied schema definition is invalid
   */
   T parse(Class type, String definition) throws SchemaParseException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy