From 1b9f39db0f5450de6c3bb97cec681c342fff5944 Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Tue, 08 Dec 2009 10:52:42 +0000
Subject: [PATCH] Move Message/MessageBuilder/LocalizableException/LocalizableIllegalArgumentException to public API since other public API elements reference them. Prefix Message/MessageBuilder with Localizable to emphasize that these classes are I18N related and not protocol messages. Keep MessageDescriptor private since users should not need access to it for now.

---
 sdk/src/org/opends/sdk/LocalizableException.java |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/sdk/src/com/sun/opends/sdk/util/LocalizableException.java b/sdk/src/org/opends/sdk/LocalizableException.java
similarity index 94%
rename from sdk/src/com/sun/opends/sdk/util/LocalizableException.java
rename to sdk/src/org/opends/sdk/LocalizableException.java
index cf63aa3..2ea8568 100644
--- a/sdk/src/com/sun/opends/sdk/util/LocalizableException.java
+++ b/sdk/src/org/opends/sdk/LocalizableException.java
@@ -24,7 +24,8 @@
  *
  *      Copyright 2009 Sun Microsystems, Inc.
  */
-package com.sun.opends.sdk.util;
+package org.opends.sdk;
+
 
 
 
@@ -42,6 +43,6 @@
    * 
    * @return The message that explains the problem that occurred.
    */
-  Message getMessageObject();
+  LocalizableMessage getMessageObject();
 
 }

--
Gitblit v1.10.0