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;
21  
22  
23  /**
24   * A class containing a SchemaObject, used by the global registries. As the hash code
25   * method of the SchemaObject class is too complex, we had to define a simplest class
26   * for this purpose, where the hash code is computed using only the SchemaObject
27   * type and its OID.
28   *
29   * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
30   */
31  public class SchemaObjectWrapper
32  {
33      /** The internal schemaObject */
34      private SchemaObject schemaObject;
35  
36  
37      /**
38       * Creates a new instance of SchemaObjectWrapper.
39       *
40       * @param schemaObject The contained SchemaObject
41       */
42      public SchemaObjectWrapper( SchemaObject schemaObject )
43      {
44          this.schemaObject = schemaObject;
45      }
46  
47  
48      /**
49       * Compute the hash code for this wrapper. We only use the object type
50       * and its oid.
51       */
52      @Override
53      public int hashCode()
54      {
55          int h = 37;
56          h += h * 17 + schemaObject.getObjectType().getValue();
57  
58          if ( schemaObject.getOid() != null )
59          {
60              h += h * 17 + schemaObject.getOid().hashCode();
61          }
62  
63          return h;
64      }
65  
66  
67      /**
68       * @see Object#equals(Object)
69       */
70      @Override
71      public boolean equals( Object o )
72      {
73          if ( o == this )
74          {
75              return true;
76          }
77  
78          if ( !( o instanceof SchemaObjectWrapper ) )
79          {
80              return false;
81          }
82  
83          SchemaObject that = ( ( SchemaObjectWrapper ) o ).get();
84          SchemaObject current = get();
85  
86          // Ultimately, that has to be true, regardless of the OID value
87          if ( that.getObjectType() != current.getObjectType() )
88          {
89              return false;
90          }
91  
92          // If both OID are null, instances are equals
93          if ( that.getOid() == null )
94          {
95              return current.getOid() == null;
96          }
97  
98          // The that'oid will never be null, we don't really care if current.oid is null here.
99          return that.getOid().equals( current.getOid() );
100     }
101 
102 
103     /**
104      *  @return The interned SchemaObject
105      */
106     public SchemaObject get()
107     {
108         return schemaObject;
109     }
110 
111 
112     /**
113      * @see Object#toString()
114      */
115     @Override
116     public String toString()
117     {
118         return "<" + schemaObject.getObjectType() + "," + schemaObject.getOid() + ">";
119     }
120 }