From 7636cc710996b7b7cbd4001a2a2ad80b5f8c3b40 Mon Sep 17 00:00:00 2001
From: boli <boli@localhost>
Date: Thu, 10 Dec 2009 16:26:02 +0000
Subject: [PATCH] Move LDAP implementation classes to com.sun.opends.sdk package.
---
sdk/src/com/sun/opends/sdk/ldap/LDAPConstants.java | 117 +++++++++++++++++++++++++++++-----------------------------
1 files changed, 59 insertions(+), 58 deletions(-)
diff --git a/sdk/src/org/opends/sdk/ldap/LDAPConstants.java b/sdk/src/com/sun/opends/sdk/ldap/LDAPConstants.java
similarity index 60%
rename from sdk/src/org/opends/sdk/ldap/LDAPConstants.java
rename to sdk/src/com/sun/opends/sdk/ldap/LDAPConstants.java
index f0c4e71..5b90762 100644
--- a/sdk/src/org/opends/sdk/ldap/LDAPConstants.java
+++ b/sdk/src/com/sun/opends/sdk/ldap/LDAPConstants.java
@@ -24,309 +24,310 @@
*
* Copyright 2006-2008 Sun Microsystems, Inc.
*/
-package org.opends.sdk.ldap;
+package com.sun.opends.sdk.ldap;
/**
* This class defines a number of constants used in the LDAP protocol.
*/
-final class LDAPConstants
+public final class LDAPConstants
{
/**
* The protocol op type for bind requests.
*/
- static final byte OP_TYPE_BIND_REQUEST = 0x60;
+ public static final byte OP_TYPE_BIND_REQUEST = 0x60;
/**
* The protocol op type for bind responses.
*/
- static final byte OP_TYPE_BIND_RESPONSE = 0x61;
+ public static final byte OP_TYPE_BIND_RESPONSE = 0x61;
/**
* The protocol op type for unbind requests.
*/
- static final byte OP_TYPE_UNBIND_REQUEST = 0x42;
+ public static final byte OP_TYPE_UNBIND_REQUEST = 0x42;
/**
* The protocol op type for search requests.
*/
- static final byte OP_TYPE_SEARCH_REQUEST = 0x63;
+ public static final byte OP_TYPE_SEARCH_REQUEST = 0x63;
/**
* The protocol op type for search result entries.
*/
- static final byte OP_TYPE_SEARCH_RESULT_ENTRY = 0x64;
+ public static final byte OP_TYPE_SEARCH_RESULT_ENTRY = 0x64;
/**
* The protocol op type for search result references.
*/
- static final byte OP_TYPE_SEARCH_RESULT_REFERENCE = 0x73;
+ public static final byte OP_TYPE_SEARCH_RESULT_REFERENCE = 0x73;
/**
* The protocol op type for search result done elements.
*/
- static final byte OP_TYPE_SEARCH_RESULT_DONE = 0x65;
+ public static final byte OP_TYPE_SEARCH_RESULT_DONE = 0x65;
/**
* The protocol op type for modify requests.
*/
- static final byte OP_TYPE_MODIFY_REQUEST = 0x66;
+ public static final byte OP_TYPE_MODIFY_REQUEST = 0x66;
/**
* The protocol op type for modify responses.
*/
- static final byte OP_TYPE_MODIFY_RESPONSE = 0x67;
+ public static final byte OP_TYPE_MODIFY_RESPONSE = 0x67;
/**
* The protocol op type for add requests.
*/
- static final byte OP_TYPE_ADD_REQUEST = 0x68;
+ public static final byte OP_TYPE_ADD_REQUEST = 0x68;
/**
* The protocol op type for add responses.
*/
- static final byte OP_TYPE_ADD_RESPONSE = 0x69;
+ public static final byte OP_TYPE_ADD_RESPONSE = 0x69;
/**
* The protocol op type for delete requests.
*/
- static final byte OP_TYPE_DELETE_REQUEST = 0x4A;
+ public static final byte OP_TYPE_DELETE_REQUEST = 0x4A;
/**
* The protocol op type for delete responses.
*/
- static final byte OP_TYPE_DELETE_RESPONSE = 0x6B;
+ public static final byte OP_TYPE_DELETE_RESPONSE = 0x6B;
/**
* The protocol op type for modify DN requests.
*/
- static final byte OP_TYPE_MODIFY_DN_REQUEST = 0x6C;
+ public static final byte OP_TYPE_MODIFY_DN_REQUEST = 0x6C;
/**
* The protocol op type for modify DN responses.
*/
- static final byte OP_TYPE_MODIFY_DN_RESPONSE = 0x6D;
+ public static final byte OP_TYPE_MODIFY_DN_RESPONSE = 0x6D;
/**
* The protocol op type for compare requests.
*/
- static final byte OP_TYPE_COMPARE_REQUEST = 0x6E;
+ public static final byte OP_TYPE_COMPARE_REQUEST = 0x6E;
/**
* The protocol op type for compare responses.
*/
- static final byte OP_TYPE_COMPARE_RESPONSE = 0x6F;
+ public static final byte OP_TYPE_COMPARE_RESPONSE = 0x6F;
/**
* The protocol op type for abandon requests.
*/
- static final byte OP_TYPE_ABANDON_REQUEST = 0x50;
+ public static final byte OP_TYPE_ABANDON_REQUEST = 0x50;
/**
* The protocol op type for extended requests.
*/
- static final byte OP_TYPE_EXTENDED_REQUEST = 0x77;
+ public static final byte OP_TYPE_EXTENDED_REQUEST = 0x77;
/**
* The protocol op type for extended responses.
*/
- static final byte OP_TYPE_EXTENDED_RESPONSE = 0x78;
+ public static final byte OP_TYPE_EXTENDED_RESPONSE = 0x78;
/**
* The protocol op type for intermediate responses.
*/
- static final byte OP_TYPE_INTERMEDIATE_RESPONSE = 0x79;
+ public static final byte OP_TYPE_INTERMEDIATE_RESPONSE = 0x79;
/**
* The BER type to use for encoding the sequence of controls in an
* LDAP message.
*/
- static final byte TYPE_CONTROL_SEQUENCE = (byte) 0xA0;
+ public static final byte TYPE_CONTROL_SEQUENCE = (byte) 0xA0;
/**
* The BER type to use for encoding the sequence of referral URLs in
* an LDAPResult element.
*/
- static final byte TYPE_REFERRAL_SEQUENCE = (byte) 0xA3;
+ public static final byte TYPE_REFERRAL_SEQUENCE = (byte) 0xA3;
/**
* The BER type to use for the AuthenticationChoice element in a bind
* request when simple authentication is to be used.
*/
- static final byte TYPE_AUTHENTICATION_SIMPLE = (byte) 0x80;
+ public static final byte TYPE_AUTHENTICATION_SIMPLE = (byte) 0x80;
/**
* The BER type to use for the AuthenticationChoice element in a bind
* request when SASL authentication is to be used.
*/
- static final byte TYPE_AUTHENTICATION_SASL = (byte) 0xA3;
+ public static final byte TYPE_AUTHENTICATION_SASL = (byte) 0xA3;
/**
* The BER type to use for the server SASL credentials in a bind
* response.
*/
- static final byte TYPE_SERVER_SASL_CREDENTIALS = (byte) 0x87;
+ public static final byte TYPE_SERVER_SASL_CREDENTIALS = (byte) 0x87;
/**
* The BER type to use for AND filter components.
*/
- static final byte TYPE_FILTER_AND = (byte) 0xA0;
+ public static final byte TYPE_FILTER_AND = (byte) 0xA0;
/**
* The BER type to use for OR filter components.
*/
- static final byte TYPE_FILTER_OR = (byte) 0xA1;
+ public static final byte TYPE_FILTER_OR = (byte) 0xA1;
/**
* The BER type to use for NOT filter components.
*/
- static final byte TYPE_FILTER_NOT = (byte) 0xA2;
+ public static final byte TYPE_FILTER_NOT = (byte) 0xA2;
/**
* The BER type to use for equality filter components.
*/
- static final byte TYPE_FILTER_EQUALITY = (byte) 0xA3;
+ public static final byte TYPE_FILTER_EQUALITY = (byte) 0xA3;
/**
* The BER type to use for substring filter components.
*/
- static final byte TYPE_FILTER_SUBSTRING = (byte) 0xA4;
+ public static final byte TYPE_FILTER_SUBSTRING = (byte) 0xA4;
/**
* The BER type to use for greater than or equal to filter components.
*/
- static final byte TYPE_FILTER_GREATER_OR_EQUAL = (byte) 0xA5;
+ public static final byte TYPE_FILTER_GREATER_OR_EQUAL = (byte) 0xA5;
/**
* The BER type to use for less than or equal to filter components.
*/
- static final byte TYPE_FILTER_LESS_OR_EQUAL = (byte) 0xA6;
+ public static final byte TYPE_FILTER_LESS_OR_EQUAL = (byte) 0xA6;
/**
* The BER type to use for presence filter components.
*/
- static final byte TYPE_FILTER_PRESENCE = (byte) 0x87;
+ public static final byte TYPE_FILTER_PRESENCE = (byte) 0x87;
/**
* The BER type to use for approximate filter components.
*/
- static final byte TYPE_FILTER_APPROXIMATE = (byte) 0xA8;
+ public static final byte TYPE_FILTER_APPROXIMATE = (byte) 0xA8;
/**
* The BER type to use for extensible matching filter components.
*/
- static final byte TYPE_FILTER_EXTENSIBLE_MATCH = (byte) 0xA9;
+ public static final byte TYPE_FILTER_EXTENSIBLE_MATCH = (byte) 0xA9;
/**
* The BER type to use for the subInitial component of a substring
* filter.
*/
- static final byte TYPE_SUBINITIAL = (byte) 0x80;
+ public static final byte TYPE_SUBINITIAL = (byte) 0x80;
/**
* The BER type to use for the subAny component(s) of a substring
* filter.
*/
- static final byte TYPE_SUBANY = (byte) 0x81;
+ public static final byte TYPE_SUBANY = (byte) 0x81;
/**
* The BER type to use for the subFinal components of a substring
* filter.
*/
- static final byte TYPE_SUBFINAL = (byte) 0x82;
+ public static final byte TYPE_SUBFINAL = (byte) 0x82;
/**
* The BER type to use for the matching rule OID in a matching rule
* assertion.
*/
- static final byte TYPE_MATCHING_RULE_ID = (byte) 0x81;
+ public static final byte TYPE_MATCHING_RULE_ID = (byte) 0x81;
/**
* The BER type to use for the attribute type in a matching rule
* assertion.
*/
- static final byte TYPE_MATCHING_RULE_TYPE = (byte) 0x82;
+ public static final byte TYPE_MATCHING_RULE_TYPE = (byte) 0x82;
/**
* The BER type to use for the assertion value in a matching rule
* assertion.
*/
- static final byte TYPE_MATCHING_RULE_VALUE = (byte) 0x83;
+ public static final byte TYPE_MATCHING_RULE_VALUE = (byte) 0x83;
/**
* The BER type to use for the DN attributes flag in a matching rule
* assertion.
*/
- static final byte TYPE_MATCHING_RULE_DN_ATTRIBUTES = (byte) 0x84;
+ public static final byte TYPE_MATCHING_RULE_DN_ATTRIBUTES = (byte) 0x84;
/**
* The BER type to use for the newSuperior component of a modify DN
* request.
*/
- static final byte TYPE_MODIFY_DN_NEW_SUPERIOR = (byte) 0x80;
+ public static final byte TYPE_MODIFY_DN_NEW_SUPERIOR = (byte) 0x80;
/**
* The BER type to use for the OID of an extended request.
*/
- static final byte TYPE_EXTENDED_REQUEST_OID = (byte) 0x80;
+ public static final byte TYPE_EXTENDED_REQUEST_OID = (byte) 0x80;
/**
* The BER type to use for the value of an extended request.
*/
- static final byte TYPE_EXTENDED_REQUEST_VALUE = (byte) 0x81;
+ public static final byte TYPE_EXTENDED_REQUEST_VALUE = (byte) 0x81;
/**
* The BER type to use for the OID of an extended response.
*/
- static final byte TYPE_EXTENDED_RESPONSE_OID = (byte) 0x8A;
+ public static final byte TYPE_EXTENDED_RESPONSE_OID = (byte) 0x8A;
/**
* The BER type to use for the value of an extended response.
*/
- static final byte TYPE_EXTENDED_RESPONSE_VALUE = (byte) 0x8B;
+ public static final byte TYPE_EXTENDED_RESPONSE_VALUE = (byte) 0x8B;
/**
* The BER type to use for the OID of an intermediate response
* message.
*/
- static final byte TYPE_INTERMEDIATE_RESPONSE_OID = (byte) 0x80;
+ public static final byte TYPE_INTERMEDIATE_RESPONSE_OID = (byte) 0x80;
/**
* The BER type to use for the value of an intermediate response
* message.
*/
- static final byte TYPE_INTERMEDIATE_RESPONSE_VALUE = (byte) 0x81;
+ public static final byte TYPE_INTERMEDIATE_RESPONSE_VALUE = (byte) 0x81;
/**
* The OID for the Kerberos V GSSAPI mechanism.
*/
- static final String OID_GSSAPI_KERBEROS_V = "1.2.840.113554.1.2.2";
+ public static final String OID_GSSAPI_KERBEROS_V = "1.2.840.113554.1.2.2";
/**
* The OID for the LDAP notice of disconnection extended operation.
*/
- static final String OID_NOTICE_OF_DISCONNECTION = "1.3.6.1.4.1.1466.20036";
+ public static final String OID_NOTICE_OF_DISCONNECTION =
+ "1.3.6.1.4.1.1466.20036";
/**
* The ASN.1 element decoding state that indicates that the next byte
* read should be the BER type for a new element.
*/
- static final int ELEMENT_READ_STATE_NEED_TYPE = 0;
+ public static final int ELEMENT_READ_STATE_NEED_TYPE = 0;
/**
* The ASN.1 element decoding state that indicates that the next byte
* read should be the first byte for the element length.
*/
- static final int ELEMENT_READ_STATE_NEED_FIRST_LENGTH_BYTE = 1;
+ public static final int ELEMENT_READ_STATE_NEED_FIRST_LENGTH_BYTE = 1;
/**
* The ASN.1 element decoding state that indicates that the next byte
* read should be additional bytes of a multi-byte length.
*/
- static final int ELEMENT_READ_STATE_NEED_ADDITIONAL_LENGTH_BYTES = 2;
+ public static final int ELEMENT_READ_STATE_NEED_ADDITIONAL_LENGTH_BYTES = 2;
/**
* The ASN.1 element decoding state that indicates that the next byte
* read should be applied to the value of the element.
*/
- static final int ELEMENT_READ_STATE_NEED_VALUE_BYTES = 3;
+ public static final int ELEMENT_READ_STATE_NEED_VALUE_BYTES = 3;
}
--
Gitblit v1.10.0