From 39db72786ec179e67e3c1c0c71a2e93672999ea5 Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Thu, 03 Dec 2009 18:04:49 +0000
Subject: [PATCH] Split SDK from server code and add build/packaging infrastructure.
---
sdk/src/org/opends/sdk/sasl/AbstractSASLContext.java | 24 ++++++++++++------------
1 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/sdk/src/org/opends/sdk/sasl/AbstractSASLContext.java b/sdk/src/org/opends/sdk/sasl/AbstractSASLContext.java
index 4b97a18..1226691 100644
--- a/sdk/src/org/opends/sdk/sasl/AbstractSASLContext.java
+++ b/sdk/src/org/opends/sdk/sasl/AbstractSASLContext.java
@@ -29,7 +29,7 @@
-import static org.opends.messages.ExtensionMessages.INFO_SASL_UNSUPPORTED_CALLBACK;
+import static com.sun.opends.sdk.util.Messages.*;
import java.io.IOException;
@@ -101,7 +101,7 @@
}
else
{
- org.opends.messages.Message message =
+ com.sun.opends.sdk.util.Message message =
INFO_SASL_UNSUPPORTED_CALLBACK.get(getSASLBindRequest()
.getSASLMechanism(), String.valueOf(callback));
throw new UnsupportedCallbackException(callback, message
@@ -141,7 +141,7 @@
protected void handle(AuthorizeCallback callback)
throws UnsupportedCallbackException
{
- org.opends.messages.Message message =
+ com.sun.opends.sdk.util.Message message =
INFO_SASL_UNSUPPORTED_CALLBACK.get(getSASLBindRequest()
.getSASLMechanism(), String.valueOf(callback));
throw new UnsupportedCallbackException(callback, message.toString());
@@ -152,7 +152,7 @@
protected void handle(ChoiceCallback callback)
throws UnsupportedCallbackException
{
- org.opends.messages.Message message =
+ com.sun.opends.sdk.util.Message message =
INFO_SASL_UNSUPPORTED_CALLBACK.get(getSASLBindRequest()
.getSASLMechanism(), String.valueOf(callback));
throw new UnsupportedCallbackException(callback, message.toString());
@@ -163,7 +163,7 @@
protected void handle(ConfirmationCallback callback)
throws UnsupportedCallbackException
{
- org.opends.messages.Message message =
+ com.sun.opends.sdk.util.Message message =
INFO_SASL_UNSUPPORTED_CALLBACK.get(getSASLBindRequest()
.getSASLMechanism(), String.valueOf(callback));
throw new UnsupportedCallbackException(callback, message.toString());
@@ -174,7 +174,7 @@
protected void handle(LanguageCallback callback)
throws UnsupportedCallbackException
{
- org.opends.messages.Message message =
+ com.sun.opends.sdk.util.Message message =
INFO_SASL_UNSUPPORTED_CALLBACK.get(getSASLBindRequest()
.getSASLMechanism(), String.valueOf(callback));
throw new UnsupportedCallbackException(callback, message.toString());
@@ -185,7 +185,7 @@
protected void handle(NameCallback callback)
throws UnsupportedCallbackException
{
- org.opends.messages.Message message =
+ com.sun.opends.sdk.util.Message message =
INFO_SASL_UNSUPPORTED_CALLBACK.get(getSASLBindRequest()
.getSASLMechanism(), String.valueOf(callback));
throw new UnsupportedCallbackException(callback, message.toString());
@@ -196,7 +196,7 @@
protected void handle(PasswordCallback callback)
throws UnsupportedCallbackException
{
- org.opends.messages.Message message =
+ com.sun.opends.sdk.util.Message message =
INFO_SASL_UNSUPPORTED_CALLBACK.get(getSASLBindRequest()
.getSASLMechanism(), String.valueOf(callback));
throw new UnsupportedCallbackException(callback, message.toString());
@@ -207,7 +207,7 @@
protected void handle(RealmCallback callback)
throws UnsupportedCallbackException
{
- org.opends.messages.Message message =
+ com.sun.opends.sdk.util.Message message =
INFO_SASL_UNSUPPORTED_CALLBACK.get(getSASLBindRequest()
.getSASLMechanism(), String.valueOf(callback));
throw new UnsupportedCallbackException(callback, message.toString());
@@ -218,7 +218,7 @@
protected void handle(RealmChoiceCallback callback)
throws UnsupportedCallbackException
{
- org.opends.messages.Message message =
+ com.sun.opends.sdk.util.Message message =
INFO_SASL_UNSUPPORTED_CALLBACK.get(getSASLBindRequest()
.getSASLMechanism(), String.valueOf(callback));
throw new UnsupportedCallbackException(callback, message.toString());
@@ -229,7 +229,7 @@
protected void handle(TextInputCallback callback)
throws UnsupportedCallbackException
{
- org.opends.messages.Message message =
+ com.sun.opends.sdk.util.Message message =
INFO_SASL_UNSUPPORTED_CALLBACK.get(getSASLBindRequest()
.getSASLMechanism(), String.valueOf(callback));
throw new UnsupportedCallbackException(callback, message.toString());
@@ -240,7 +240,7 @@
protected void handle(TextOutputCallback callback)
throws UnsupportedCallbackException
{
- org.opends.messages.Message message =
+ com.sun.opends.sdk.util.Message message =
INFO_SASL_UNSUPPORTED_CALLBACK.get(getSASLBindRequest()
.getSASLMechanism(), String.valueOf(callback));
throw new UnsupportedCallbackException(callback, message.toString());
--
Gitblit v1.10.0