Package org.apache.directory.api.ldap.model.schema.syntaxCheckers

Examples of org.apache.directory.api.ldap.model.schema.syntaxCheckers.Ia5StringSyntaxChecker


     */
    @Test
    public void testSerializeEmptyValueNotNormalized() throws LdapException, IOException, ClassNotFoundException
    {
        StringValue csv = new StringValue( "" );
        csv.isValid( new Ia5StringSyntaxChecker() );

        StringValue csvSer = deserializeValue( null, serializeValue( csv ) );
        assertNotSame( csv, csvSer );
        assertEquals( csv.getValue(), csvSer.getValue() );
        assertEquals( csv.getNormValue(), csvSer.getNormValue() );
View Full Code Here

TOP

Related Classes of org.apache.directory.api.ldap.model.schema.syntaxCheckers.Ia5StringSyntaxChecker

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.