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/org/opends/sdk/ldap/LDAPDecoder.java |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sdk/src/org/opends/sdk/ldap/LDAPDecoder.java b/sdk/src/org/opends/sdk/ldap/LDAPDecoder.java
index 4c93998..72c25b7 100644
--- a/sdk/src/org/opends/sdk/ldap/LDAPDecoder.java
+++ b/sdk/src/org/opends/sdk/ldap/LDAPDecoder.java
@@ -31,7 +31,7 @@
 
 import static com.sun.opends.sdk.messages.Messages.*;
 import static org.opends.sdk.asn1.ASN1Constants.*;
-import static org.opends.sdk.ldap.LDAPConstants.*;
+import static com.sun.opends.sdk.ldap.LDAPConstants.*;
 
 import java.io.IOException;
 import java.util.logging.Level;
@@ -45,13 +45,13 @@
 import org.opends.sdk.schema.Schema;
 
 import com.sun.opends.sdk.util.StaticUtils;
-
+import com.sun.opends.sdk.ldap.LDAPMessageHandler;
 
 
 /**
  * Static methods for decoding LDAP messages.
  */
-class LDAPDecoder
+public class LDAPDecoder
 {
 
   /**
@@ -66,7 +66,7 @@
    * @throws IOException
    *           If an error occurred while reading bytes to decode.
    */
-  static void decode(ASN1Reader reader, LDAPMessageHandler handler)
+  public static void decode(ASN1Reader reader, LDAPMessageHandler handler)
       throws IOException
   {
     reader.readStartSequence();
@@ -83,7 +83,7 @@
 
 
 
-  static SearchResultEntry decodeEntry(ASN1Reader reader, Schema schema)
+  public static SearchResultEntry decodeEntry(ASN1Reader reader, Schema schema)
       throws IOException
   {
     SearchResultEntry message;

--
Gitblit v1.10.0