Package org.apache.directory.shared.ldap.schema

Examples of org.apache.directory.shared.ldap.schema.Syntax


                }


                public Syntax getSyntax() throws NamingException
                {
                    return new Syntax()
                    {

                        private static final long serialVersionUID = 1L;

                        public boolean isHumanReadable()
                        {
                            return true;
                        }

                        public SyntaxChecker getSyntaxChecker() throws NamingException
                        {
                            return null;
                        }

                        public boolean isObsolete()
                        {
                            return false;
                        }

                        public String getOid()
                        {
                            return null;
                        }

                        public String[] getNamesRef()
                        {
                            return null;
                        }

                        public String getName()
                        {
                            return null;
                        }

                        public String getDescription()
                        {
                            return null;
                        }

                        public String getSchema()
                        {
                            return null;
                        }

                        public void setSchema( String schemaName )
                        {
                        }
                    };
                }


                public int getLength()
                {
                    return 0;
                }


                public MatchingRule getEquality() throws NamingException
                {
                    return new MatchingRule()
                    {
                        private static final long serialVersionUID = 1L;

                        public Syntax getSyntax() throws NamingException
                        {
                            return new Syntax()
                            {
                                private static final long serialVersionUID = 1L;


                                public boolean isHumanReadable()
View Full Code Here

TOP

Related Classes of org.apache.directory.shared.ldap.schema.Syntax

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.