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      public int hashCode()
53      {
54          int h = 37;
55          h += h * 17 + schemaObject.getObjectType().getValue();
56          h += h * 17 + schemaObject.getOid().hashCode();
57  
58          return h;
59      }
60  
61  
62      /**
63       * @see Object#equals(Object)
64       */
65      public boolean equals( Object o )
66      {
67          if ( o == this )
68          {
69              return true;
70          }
71  
72          if ( !( o instanceof SchemaObjectWrapper ) )
73          {
74              return false;
75          }
76  
77          SchemaObject that = ( ( SchemaObjectWrapper ) o ).get();
78          SchemaObject current = get();
79  
80          return ( that.getOid().equals( current.getOid() ) && ( that.getObjectType() == current.getObjectType() ) );
81      }
82  
83  
84      /**
85       *  @return The interned SchemaObject
86       */
87      public SchemaObject get()
88      {
89          return schemaObject;
90      }
91  
92  
93      /**
94       * @see Object#toString()
95       */
96      public String toString()
97      {
98          return "<" + schemaObject.getObjectType() + "," + schemaObject.getOid() + ">";
99      }
100 }