View Javadoc
1   /*
2    *  Licensed to the Apache Software Foundation (ASF) under one
3    *  or more contributor license agreements.  See the NOTICE file
4    *  distributed with this work for additional information
5    *  regarding copyright ownership.  The ASF licenses this file
6    *  to you under the Apache License, Version 2.0 (the
7    *  "License"); you may not use this file except in compliance
8    *  with the License.  You may obtain a copy of the License at
9    *  
10   *    http://www.apache.org/licenses/LICENSE-2.0
11   *  
12   *  Unless required by applicable law or agreed to in writing,
13   *  software distributed under the License is distributed on an
14   *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   *  KIND, either express or implied.  See the License for the
16   *  specific language governing permissions and limitations
17   *  under the License. 
18   *  
19   */
20  package org.apache.directory.api.ldap.model.schema.syntaxCheckers;
21  
22  
23  import org.apache.directory.api.i18n.I18n;
24  import org.apache.directory.api.ldap.model.constants.SchemaConstants;
25  import org.apache.directory.api.ldap.model.schema.SyntaxChecker;
26  import org.apache.directory.api.util.Strings;
27  
28  
29  /**
30   * A SyntaxChecker which verifies that a value is a valid DerefAlias. We
31   * have four possible values :
32   * <ul>
33   * <li>NEVER</li>
34   * <li>SEARCHING</li>
35   * <li>FINDING</li>
36   * <li>ALWAYS</li>
37   * </ul>
38   * The value is case insensitive
39   *
40   * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
41   */
42  @SuppressWarnings("serial")
43  public final class DerefAliasSyntaxChecker extends SyntaxChecker
44  {
45      /**
46       * A static instance of DerefAliasSyntaxChecker
47       */
48      public static final DerefAliasSyntaxChecker INSTANCE = 
49          new DerefAliasSyntaxChecker( SchemaConstants.DEREF_ALIAS_SYNTAX );
50      
51      /**
52       * A static Builder for this class
53       */
54      public static final class Builder extends SCBuilder<DerefAliasSyntaxChecker>
55      {
56          /**
57           * The Builder constructor
58           */
59          private Builder()
60          {
61              super( SchemaConstants.DEREF_ALIAS_SYNTAX );
62          }
63          
64          
65          /**
66           * Create a new instance of DerefAliasSyntaxChecker
67           * @return A new instance of DerefAliasSyntaxChecker
68           */
69          @Override
70          public DerefAliasSyntaxChecker build()
71          {
72              return new DerefAliasSyntaxChecker( oid );
73          }
74      }
75  
76      /**
77       * Creates a new instance of DerefAliasSyntaxChecker.
78       * 
79       * @param oid The OID to use for this SyntaxChecker
80       */
81      private DerefAliasSyntaxChecker( String oid )
82      {
83          super( oid );
84      }
85  
86      
87      /**
88       * @return An instance of the Builder for this class
89       */
90      public static Builder builder()
91      {
92          return new Builder();
93      }
94  
95  
96      /**
97       * {@inheritDoc}
98       */
99      @Override
100     public boolean isValidSyntax( Object value )
101     {
102         String strValue;
103 
104         if ( value == null )
105         {
106             if ( LOG.isDebugEnabled() )
107             {
108                 LOG.debug( I18n.err( I18n.ERR_04488_SYNTAX_INVALID, "null" ) );
109             }
110             
111             return false;
112         }
113 
114         if ( value instanceof String )
115         {
116             strValue = ( String ) value;
117         }
118         else if ( value instanceof byte[] )
119         {
120             strValue = Strings.utf8ToString( ( byte[] ) value );
121         }
122         else
123         {
124             strValue = value.toString();
125         }
126 
127         strValue = Strings.trim( Strings.toLowerCaseAscii( strValue ) );
128 
129         return "never".equals( strValue ) || "finding".equals( strValue ) || "searching".equals( strValue ) || "always"
130             .equals( strValue );
131     }
132 }