Package org.ldaptive.schema
Class SchemaParser
- java.lang.Object
-
- org.ldaptive.schema.SchemaParser
-
public final class SchemaParser extends java.lang.ObjectEncapsulates aSchemaFunctionand exposes a convenience static method for parsing schema definitions. The schema function used by this class can be set using the system propertySCHEMA_FUNCTION_PROPERTY.- Author:
- Middleware Services
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSchemaParser.DefaultSchemaFunctionCharBuffer based implementation for schema functions.static classSchemaParser.RegexSchemaFunctionRegular expression based implementation for schema functions.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SchemaFunctiongetSchemaFunction()TheSCHEMA_FUNCTION_PROPERTYproperty is checked and that class is loaded if provided.static <T extends SchemaElement>
Tparse(java.lang.Class<T> type, java.lang.String definition)Parses the supplied string representation of a schema element.
-
-
-
Method Detail
-
getSchemaFunction
public static SchemaFunction getSchemaFunction()
TheSCHEMA_FUNCTION_PROPERTYproperty is checked and that class is loaded if provided. Otherwise theSchemaParser.DefaultSchemaFunctionis returned.- Returns:
- default filter function
-
parse
public static <T extends SchemaElement> T parse(java.lang.Class<T> type, java.lang.String definition) throws SchemaParseException
Parses the supplied string representation of a schema element.- Type Parameters:
T- type of schema element- Parameters:
type- of schema elementdefinition- to parse- Returns:
- parsed schema element
- Throws:
SchemaParseException- if definition is invalid
-
-