View Javadoc

1   /*
2    *   Copyright 2004 The Apache Software Foundation
3    *
4    *   Licensed under the Apache License, Version 2.0 (the "License");
5    *   you may not use this file except in compliance with the License.
6    *   You may obtain a copy of the License at
7    *
8    *       http://www.apache.org/licenses/LICENSE-2.0
9    *
10   *   Unless required by applicable law or agreed to in writing, software
11   *   distributed under the License is distributed on an "AS IS" BASIS,
12   *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   *   See the License for the specific language governing permissions and
14   *   limitations under the License.
15   *
16   */
17  package org.apache.ldap.server.partition;
18  
19  /***
20   * Provides constants of private OIDs.
21   *
22   * @author The Apache Directory Project
23   * @version $Rev: 264732 $, $Date: 2005-08-30 04:04:51 -0400 (Tue, 30 Aug 2005) $
24   */
25  public class Oid
26  {
27      /*** Private OID (1.2.6.1.4.1.18060.1.1.1.3.1) for _ndn op attrib */
28      public static final String NDN       = "1.2.6.1.4.1.18060.1.1.1.3.1" ;
29      /*** Private OID (1.2.6.1.4.1.18060.1.1.1.3.2) for _updn op attrib */
30      public static final String UPDN      = "1.2.6.1.4.1.18060.1.1.1.3.2" ;
31      /*** Private OID (1.2.6.1.4.1.18060.1.1.1.3.3) for _existance op attrib */
32      public static final String EXISTANCE = "1.2.6.1.4.1.18060.1.1.1.3.3" ;
33      /*** Private OID (1.2.6.1.4.1.18060.1.1.1.3.4) for _hierarchy op attrib */
34      public static final String HIERARCHY = "1.2.6.1.4.1.18060.1.1.1.3.4" ;
35      /*** Private OID (1.2.6.1.4.1.18060.1.1.1.3.5) for _oneAlias index */
36      public static final String ONEALIAS  = "1.2.6.1.4.1.18060.1.1.1.3.5" ;
37      /*** Private OID (1.2.6.1.4.1.18060.1.1.1.3.6) for _subAlias index */
38      public static final String SUBALIAS  = "1.2.6.1.4.1.18060.1.1.1.3.6" ;
39      /*** Private OID (1.2.6.1.4.1.18060.1.1.1.3.7) for _alias index */
40      public static final String ALIAS     = "1.2.6.1.4.1.18060.1.1.1.3.7" ;
41  
42      private Oid()
43      {
44      }
45  }