From 22094368c2865dcfb6daf8366425212b721a4657 Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Thu, 05 Feb 2009 17:42:14 +0000
Subject: [PATCH] Merge ASN1 branch to trunk

---
 opends/src/server/org/opends/server/core/ExtendedOperation.java |    9 ++++-----
 1 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/opends/src/server/org/opends/server/core/ExtendedOperation.java b/opends/src/server/org/opends/server/core/ExtendedOperation.java
index 274ac3a..455140c 100644
--- a/opends/src/server/org/opends/server/core/ExtendedOperation.java
+++ b/opends/src/server/org/opends/server/core/ExtendedOperation.java
@@ -26,9 +26,8 @@
  */
 package org.opends.server.core;
 
-import org.opends.server.protocols.asn1.ASN1OctetString;
 import org.opends.server.types.Operation;
-
+import org.opends.server.types.ByteString;
 
 
 /**
@@ -56,7 +55,7 @@
    * @return  The value for the request associated with this extended
    *          operation.
    */
-  public ASN1OctetString getRequestValue();
+  public ByteString getRequestValue();
 
 
 
@@ -84,7 +83,7 @@
    *
    * @return  The value to include in the response to the client.
    */
-  public ASN1OctetString getResponseValue();
+  public ByteString getResponseValue();
 
 
 
@@ -94,7 +93,7 @@
    * @param  responseValue  The value to include in the response to
    *                        the client.
    */
-  public void setResponseValue(ASN1OctetString responseValue);
+  public void setResponseValue(ByteString responseValue);
 
   /**
    * Indicates that the response for this extended operation has been sent from

--
Gitblit v1.10.0