You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ch...@apache.org on 2005/07/27 10:08:21 UTC

svn commit: r225478 [2/4] - in /webservices/axis/trunk/java/modules: addressing/src/org/apache/axis2/handlers/addressing/ addressing/test/org/apache/axis2/handlers/addressing/ common/src/org/apache/axis2/ common/src/org/apache/axis2/i18n/ core/src/org/...

Modified: webservices/axis/trunk/java/modules/common/src/org/apache/axis2/i18n/RB.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/common/src/org/apache/axis2/i18n/RB.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/common/src/org/apache/axis2/i18n/RB.java (original)
+++ webservices/axis/trunk/java/modules/common/src/org/apache/axis2/i18n/RB.java Wed Jul 27 00:57:39 2005
@@ -19,16 +19,12 @@
 import java.io.IOException;
 import java.io.InputStream;
 import java.text.MessageFormat;
-import java.util.Enumeration;
-import java.util.Hashtable;
-import java.util.Locale;
-import java.util.MissingResourceException;
-import java.util.Properties;
+import java.util.*;
 
 /**
  * CURRENTLY NOT USED
  * KEEPING FOR REFERENCE  9/19/2002
- * 
+ * <p/>
  * <p>Wrapper class for resource bundles. Property files are used to store
  * resource strings, which are the only types of resources available.
  * Property files can inherit properties from other files so that
@@ -59,7 +55,7 @@
  * variables. Any dynamic variable defined in PropertiesUtil.getVariableValue()
  * can be used (such as {date}), as well as arguments in the form {0}, {1}, etc.
  * Argument values are specified in the various overloaded getString() methods.</p>
- * 
+ *
  * @author Karl Moss (kmoss@macromedia.com)
  * @author Glen Daniels (gdaniels@apache.org)
  */
@@ -82,34 +78,34 @@
     protected Properties resourceProperties;
 
     /**
-      * Construct a new RB
-      * @param name The name of the property file without the ".properties" extension
-      */
-    public RB(String name) throws MissingResourceException
-    {
+     * Construct a new RB
+     *
+     * @param name The name of the property file without the ".properties" extension
+     */
+    public RB(String name) throws MissingResourceException {
         this(null, name, null);
     }
 
     /**
-      * Construct a new RB
-      * @param caller The calling object. This is used to get the package name
-      * to further construct the basename as well as to get the proper ClassLoader
-      * @param name The name of the property file without the ".properties" extension
-      */
-    public RB(Object caller, String name) throws MissingResourceException
-    {
+     * Construct a new RB
+     *
+     * @param caller The calling object. This is used to get the package name
+     *               to further construct the basename as well as to get the proper ClassLoader
+     * @param name   The name of the property file without the ".properties" extension
+     */
+    public RB(Object caller, String name) throws MissingResourceException {
         this(caller, name, null);
     }
 
     /**
-      * Construct a new RB
-      * @param caller The calling object. This is used to get the package name
-      * to further construct the basename as well as to get the proper ClassLoader
-      * @param name The name of the property file without the ".properties" extension
-      * @param local The local
-      */
-    public RB(Object caller, String name, Locale locale) throws MissingResourceException
-    {
+     * Construct a new RB
+     *
+     * @param caller The calling object. This is used to get the package name
+     *               to further construct the basename as well as to get the proper ClassLoader
+     * @param name   The name of the property file without the ".properties" extension
+     * @param local  The local
+     */
+    public RB(Object caller, String name, Locale locale) throws MissingResourceException {
         ClassLoader cl = null;
 
         if (caller != null) {
@@ -117,8 +113,7 @@
             Class c;
             if (caller instanceof Class) {
                 c = (Class) caller;
-            }
-            else {
+            } else {
                 c = caller.getClass();
             }
 
@@ -157,47 +152,47 @@
     }
 
     /**
-      * Gets a string message from the resource bundle for the given key
-      * @param key The resource key
-      * @return The message
-      */
-    public String getString(String key) throws MissingResourceException
-    {
+     * Gets a string message from the resource bundle for the given key
+     *
+     * @param key The resource key
+     * @return The message
+     */
+    public String getString(String key) throws MissingResourceException {
         return getString(key, (Object[]) null);
     }
 
     /**
-      * <p>Gets a string message from the resource bundle for the given key. The
-      * message may contain variables that will be substituted with the given
-      * arguments. Variables have the format:</p>
-      * <dir>
-      * This message has two variables: {0} and {1}
-      * </dir>
-      * @param key The resource key
-      * @param arg0 The argument to place in variable {0}
-      * @return The message
-      */
-    public String getString(String key, Object arg0) throws MissingResourceException
-    {
+     * <p>Gets a string message from the resource bundle for the given key. The
+     * message may contain variables that will be substituted with the given
+     * arguments. Variables have the format:</p>
+     * <dir>
+     * This message has two variables: {0} and {1}
+     * </dir>
+     *
+     * @param key  The resource key
+     * @param arg0 The argument to place in variable {0}
+     * @return The message
+     */
+    public String getString(String key, Object arg0) throws MissingResourceException {
         Object[] o = new Object[1];
         o[0] = arg0;
         return getString(key, o);
     }
 
     /**
-      * <p>Gets a string message from the resource bundle for the given key. The
-      * message may contain variables that will be substituted with the given
-      * arguments. Variables have the format:</p>
-      * <dir>
-      * This message has two variables: {0} and {1}
-      * </dir>
-      * @param key The resource key
-      * @param arg0 The argument to place in variable {0}
-      * @param arg1 The argument to place in variable {1}
-      * @return The message
-      */
-    public String getString(String key, Object arg0, Object arg1) throws MissingResourceException
-    {
+     * <p>Gets a string message from the resource bundle for the given key. The
+     * message may contain variables that will be substituted with the given
+     * arguments. Variables have the format:</p>
+     * <dir>
+     * This message has two variables: {0} and {1}
+     * </dir>
+     *
+     * @param key  The resource key
+     * @param arg0 The argument to place in variable {0}
+     * @param arg1 The argument to place in variable {1}
+     * @return The message
+     */
+    public String getString(String key, Object arg0, Object arg1) throws MissingResourceException {
         Object[] o = new Object[2];
         o[0] = arg0;
         o[1] = arg1;
@@ -205,20 +200,20 @@
     }
 
     /**
-      * <p>Gets a string message from the resource bundle for the given key. The
-      * message may contain variables that will be substituted with the given
-      * arguments. Variables have the format:</p>
-      * <dir>
-      * This message has two variables: {0} and {1}
-      * </dir>
-      * @param key The resource key
-      * @param arg0 The argument to place in variable {0}
-      * @param arg1 The argument to place in variable {1}
-      * @param arg2 The argument to place in variable {1}
-      * @return The message
-      */
-    public String getString(String key, Object arg0, Object arg1, Object arg2) throws MissingResourceException
-    {
+     * <p>Gets a string message from the resource bundle for the given key. The
+     * message may contain variables that will be substituted with the given
+     * arguments. Variables have the format:</p>
+     * <dir>
+     * This message has two variables: {0} and {1}
+     * </dir>
+     *
+     * @param key  The resource key
+     * @param arg0 The argument to place in variable {0}
+     * @param arg1 The argument to place in variable {1}
+     * @param arg2 The argument to place in variable {1}
+     * @return The message
+     */
+    public String getString(String key, Object arg0, Object arg1, Object arg2) throws MissingResourceException {
         Object[] o = new Object[3];
         o[0] = arg0;
         o[1] = arg1;
@@ -227,18 +222,18 @@
     }
 
     /**
-      * <p>Gets a string message from the resource bundle for the given key. The
-      * message may contain variables that will be substituted with the given
-      * arguments. Variables have the format:</p>
-      * <dir>
-      * This message has two variables: {0} and {1}
-      * </dir>
-      * @param key The resource key
-      * @param array An array of objects to place in corresponding variables
-      * @return The message
-      */
-    public String getString(String key, Object[] array) throws MissingResourceException
-    {
+     * <p>Gets a string message from the resource bundle for the given key. The
+     * message may contain variables that will be substituted with the given
+     * arguments. Variables have the format:</p>
+     * <dir>
+     * This message has two variables: {0} and {1}
+     * </dir>
+     *
+     * @param key   The resource key
+     * @param array An array of objects to place in corresponding variables
+     * @return The message
+     */
+    public String getString(String key, Object[] array) throws MissingResourceException {
         String msg = null;
         if (resourceProperties != null) {
             msg = resourceProperties.getProperty(key);
@@ -246,8 +241,8 @@
 
         if (msg == null) {
             throw new MissingResourceException("Cannot find resource key \"" + key +
-                                               "\" in base name " + basePropertyFileName,
-                                               basePropertyFileName, key);
+                    "\" in base name " + basePropertyFileName,
+                    basePropertyFileName, key);
         }
 
         msg = MessageFormat.format(msg, array);
@@ -256,8 +251,7 @@
 
     protected void loadProperties(String basename, ClassLoader loader, Locale locale,
                                   Locale defaultLocale)
-        throws MissingResourceException
-    {
+            throws MissingResourceException {
         // Check the cache first
         String loaderName = "";
         if (loader != null) {
@@ -284,7 +278,7 @@
 
             if (p == null) {
                 throw new MissingResourceException("Cannot find resource for base name " +
-                                                   basePropertyFileName, basePropertyFileName, "");
+                        basePropertyFileName, basePropertyFileName, "");
             }
 
             // Cache the properties
@@ -296,8 +290,7 @@
     }
 
     protected Properties loadProperties(String basename, ClassLoader loader, Locale locale,
-                                        Properties props)
-    {
+                                        Properties props) {
 
         String language = locale.getLanguage();
         String country = locale.getCountry();
@@ -313,19 +306,18 @@
             if (country != null) {
 
                 if (variant != null) {
-                    props = merge(props, loadProperties(basename + "_" + language +"_" + country + "_" + variant +
-                                                        PROPERTY_EXT, loader));
+                    props = merge(props, loadProperties(basename + "_" + language + "_" + country + "_" + variant +
+                            PROPERTY_EXT, loader));
                 }
-                props = merge(props, loadProperties(basename + "_" + language +"_" + country +
-                                                    PROPERTY_EXT, loader));
+                props = merge(props, loadProperties(basename + "_" + language + "_" + country +
+                        PROPERTY_EXT, loader));
             }
             props = merge(props, loadProperties(basename + "_" + language + PROPERTY_EXT, loader));
         }
         return props;
     }
 
-    protected Properties loadProperties(String resname, ClassLoader loader)
-    {
+    protected Properties loadProperties(String resname, ClassLoader loader) {
         Properties props = null;
 
         // Attempt to open and load the properties
@@ -344,19 +336,16 @@
                 props = new Properties();
                 try {
                     props.load(in);
-                }
-                catch (IOException ex) {
+                } catch (IOException ex) {
                     // On error, clear the props
                     props = null;
                 }
             }
-        }
-        finally {
+        } finally {
             if (in != null) {
                 try {
                     in.close();
-                }
-                catch (Exception ex) {
+                } catch (Exception ex) {
                     // Ignore error on close
                 }
             }
@@ -365,18 +354,15 @@
     }
 
     /**
-      * Merge two Properties objects
-      */
-    protected Properties merge(Properties p1, Properties p2)
-    {
+     * Merge two Properties objects
+     */
+    protected Properties merge(Properties p1, Properties p2) {
         if ((p1 == null) &&
-            (p2 == null)) {
+                (p2 == null)) {
             return null;
-        }
-        else if (p1 == null) {
+        } else if (p1 == null) {
             return p2;
-        }
-        else if (p2 == null) {
+        } else if (p2 == null) {
             return p1;
         }
 
@@ -393,53 +379,52 @@
     }
 
     /**
-      * Get the underlying properties
-      */
-    public Properties getProperties()
-    {
+     * Get the underlying properties
+     */
+    public Properties getProperties() {
         return resourceProperties;
     }
 
     // STATIC ACCESSORS
 
     /**
-      * Get a message from resource.properties from the package of the given object.
-      * @param caller The calling object, used to get the package name and class loader
-      * @param key The resource key
-      * @return The formatted message
-      */
+     * Get a message from resource.properties from the package of the given object.
+     *
+     * @param caller The calling object, used to get the package name and class loader
+     * @param key    The resource key
+     * @return The formatted message
+     */
     public static String getString(Object caller, String key)
-        throws MissingResourceException
-    {
+            throws MissingResourceException {
         return getMessage(caller, BASE_NAME, null, key, null);
     }
 
     /**
-      * Get a message from resource.properties from the package of the given object.
-      * @param caller The calling object, used to get the package name and class loader
-      * @param key The resource key
-      * @param arg0 The argument to place in variable {0}
-      * @return The formatted message
-      */
+     * Get a message from resource.properties from the package of the given object.
+     *
+     * @param caller The calling object, used to get the package name and class loader
+     * @param key    The resource key
+     * @param arg0   The argument to place in variable {0}
+     * @return The formatted message
+     */
     public static String getString(Object caller, String key, Object arg0)
-        throws MissingResourceException
-    {
+            throws MissingResourceException {
         Object[] o = new Object[1];
         o[0] = arg0;
         return getMessage(caller, BASE_NAME, null, key, o);
     }
 
     /**
-      * Get a message from resource.properties from the package of the given object.
-      * @param caller The calling object, used to get the package name and class loader
-      * @param key The resource key
-      * @param arg0 The argument to place in variable {0}
-      * @param arg1 The argument to place in variable {1}
-      * @return The formatted message
-      */
+     * Get a message from resource.properties from the package of the given object.
+     *
+     * @param caller The calling object, used to get the package name and class loader
+     * @param key    The resource key
+     * @param arg0   The argument to place in variable {0}
+     * @param arg1   The argument to place in variable {1}
+     * @return The formatted message
+     */
     public static String getString(Object caller, String key, Object arg0, Object arg1)
-        throws MissingResourceException
-    {
+            throws MissingResourceException {
         Object[] o = new Object[2];
         o[0] = arg0;
         o[1] = arg1;
@@ -447,17 +432,17 @@
     }
 
     /**
-      * Get a message from resource.properties from the package of the given object.
-      * @param caller The calling object, used to get the package name and class loader
-      * @param key The resource key
-      * @param arg0 The argument to place in variable {0}
-      * @param arg1 The argument to place in variable {1}
-      * @param arg2 The argument to place in variable {2}
-      * @return The formatted message
-      */
+     * Get a message from resource.properties from the package of the given object.
+     *
+     * @param caller The calling object, used to get the package name and class loader
+     * @param key    The resource key
+     * @param arg0   The argument to place in variable {0}
+     * @param arg1   The argument to place in variable {1}
+     * @param arg2   The argument to place in variable {2}
+     * @return The formatted message
+     */
     public static String getString(Object caller, String key, Object arg0, Object arg1, Object arg2)
-        throws MissingResourceException
-    {
+            throws MissingResourceException {
         Object[] o = new Object[3];
         o[0] = arg0;
         o[1] = arg1;
@@ -466,18 +451,18 @@
     }
 
     /**
-      * Get a message from resource.properties from the package of the given object.
-      * @param caller The calling object, used to get the package name and class loader
-      * @param key The resource key
-      * @param arg0 The argument to place in variable {0}
-      * @param arg1 The argument to place in variable {1}
-      * @param arg2 The argument to place in variable {2}
-      * @param arg3 The argument to place in variable {3}
-      * @return The formatted message
-      */
+     * Get a message from resource.properties from the package of the given object.
+     *
+     * @param caller The calling object, used to get the package name and class loader
+     * @param key    The resource key
+     * @param arg0   The argument to place in variable {0}
+     * @param arg1   The argument to place in variable {1}
+     * @param arg2   The argument to place in variable {2}
+     * @param arg3   The argument to place in variable {3}
+     * @return The formatted message
+     */
     public static String getString(Object caller, String key, Object arg0, Object arg1, Object arg2, Object arg3)
-        throws MissingResourceException
-    {
+            throws MissingResourceException {
         Object[] o = new Object[4];
         o[0] = arg0;
         o[1] = arg1;
@@ -488,19 +473,19 @@
 
 
     /**
-      * Get a message from resource.properties from the package of the given object.
-      * @param caller The calling object, used to get the package name and class loader
-      * @param key The resource key
-      * @param arg0 The argument to place in variable {0}
-      * @param arg1 The argument to place in variable {1}
-      * @param arg2 The argument to place in variable {2}
-      * @param arg3 The argument to place in variable {3}
-      * @param arg4 The argument to place in variable {4}
-      * @return The formatted message
-      */
+     * Get a message from resource.properties from the package of the given object.
+     *
+     * @param caller The calling object, used to get the package name and class loader
+     * @param key    The resource key
+     * @param arg0   The argument to place in variable {0}
+     * @param arg1   The argument to place in variable {1}
+     * @param arg2   The argument to place in variable {2}
+     * @param arg3   The argument to place in variable {3}
+     * @param arg4   The argument to place in variable {4}
+     * @return The formatted message
+     */
     public static String getString(Object caller, String key, Object arg0, Object arg1, Object arg2, Object arg3, Object arg4)
-        throws MissingResourceException
-    {
+            throws MissingResourceException {
         Object[] o = new Object[5];
         o[0] = arg0;
         o[1] = arg1;
@@ -512,60 +497,60 @@
 
 
     /**
-      * Get a message from resource.properties from the package of the given object.
-      * @param caller The calling object, used to get the package name and class loader
-      * @param key The resource key
-      * @param array An array of objects to place in corresponding variables
-      * @return The formatted message
-      */
+     * Get a message from resource.properties from the package of the given object.
+     *
+     * @param caller The calling object, used to get the package name and class loader
+     * @param key    The resource key
+     * @param array  An array of objects to place in corresponding variables
+     * @return The formatted message
+     */
     public static String getString(Object caller, String key, Object[] args)
-        throws MissingResourceException
-    {
+            throws MissingResourceException {
         return getMessage(caller, BASE_NAME, null, key, args);
     }
 
 
     /**
-      * Get a message from resource.properties from the package of the given object.
-      * @param caller The calling object, used to get the package name and class loader
-      * @param locale The locale
-      * @param key The resource key
-      * @return The formatted message
-      */
+     * Get a message from resource.properties from the package of the given object.
+     *
+     * @param caller The calling object, used to get the package name and class loader
+     * @param locale The locale
+     * @param key    The resource key
+     * @return The formatted message
+     */
     public static String getString(Object caller, Locale locale, String key)
-        throws MissingResourceException
-    {
+            throws MissingResourceException {
         return getMessage(caller, BASE_NAME, locale, key, null);
     }
 
     /**
-      * Get a message from resource.properties from the package of the given object.
-      * @param caller The calling object, used to get the package name and class loader
-      * @param locale The locale
-      * @param key The resource key
-      * @param arg0 The argument to place in variable {0}
-      * @return The formatted message
-      */
+     * Get a message from resource.properties from the package of the given object.
+     *
+     * @param caller The calling object, used to get the package name and class loader
+     * @param locale The locale
+     * @param key    The resource key
+     * @param arg0   The argument to place in variable {0}
+     * @return The formatted message
+     */
     public static String getString(Object caller, Locale locale, String key, Object arg0)
-        throws MissingResourceException
-    {
+            throws MissingResourceException {
         Object[] o = new Object[1];
         o[0] = arg0;
         return getMessage(caller, BASE_NAME, locale, key, o);
     }
 
     /**
-      * Get a message from resource.properties from the package of the given object.
-      * @param caller The calling object, used to get the package name and class loader
-      * @param locale The locale
-      * @param key The resource key
-      * @param arg0 The argument to place in variable {0}
-      * @param arg1 The argument to place in variable {1}
-      * @return The formatted message
-      */
+     * Get a message from resource.properties from the package of the given object.
+     *
+     * @param caller The calling object, used to get the package name and class loader
+     * @param locale The locale
+     * @param key    The resource key
+     * @param arg0   The argument to place in variable {0}
+     * @param arg1   The argument to place in variable {1}
+     * @return The formatted message
+     */
     public static String getString(Object caller, Locale locale, String key, Object arg0, Object arg1)
-        throws MissingResourceException
-    {
+            throws MissingResourceException {
         Object[] o = new Object[2];
         o[0] = arg0;
         o[1] = arg1;
@@ -573,18 +558,18 @@
     }
 
     /**
-      * Get a message from resource.properties from the package of the given object.
-      * @param caller The calling object, used to get the package name and class loader
-      * @param locale The locale
-      * @param key The resource key
-      * @param arg0 The argument to place in variable {0}
-      * @param arg1 The argument to place in variable {1}
-      * @param arg2 The argument to place in variable {2}
-      * @return The formatted message
-      */
+     * Get a message from resource.properties from the package of the given object.
+     *
+     * @param caller The calling object, used to get the package name and class loader
+     * @param locale The locale
+     * @param key    The resource key
+     * @param arg0   The argument to place in variable {0}
+     * @param arg1   The argument to place in variable {1}
+     * @param arg2   The argument to place in variable {2}
+     * @return The formatted message
+     */
     public static String getString(Object caller, Locale locale, String key, Object arg0, Object arg1, Object arg2)
-        throws MissingResourceException
-    {
+            throws MissingResourceException {
         Object[] o = new Object[3];
         o[0] = arg0;
         o[1] = arg1;
@@ -593,19 +578,19 @@
     }
 
     /**
-      * Get a message from resource.properties from the package of the given object.
-      * @param caller The calling object, used to get the package name and class loader
-      * @param locale The locale
-      * @param key The resource key
-      * @param arg0 The argument to place in variable {0}
-      * @param arg1 The argument to place in variable {1}
-      * @param arg2 The argument to place in variable {2}
-      * @param arg3 The argument to place in variable {3}
-      * @return The formatted message
-      */
+     * Get a message from resource.properties from the package of the given object.
+     *
+     * @param caller The calling object, used to get the package name and class loader
+     * @param locale The locale
+     * @param key    The resource key
+     * @param arg0   The argument to place in variable {0}
+     * @param arg1   The argument to place in variable {1}
+     * @param arg2   The argument to place in variable {2}
+     * @param arg3   The argument to place in variable {3}
+     * @return The formatted message
+     */
     public static String getString(Object caller, Locale locale, String key, Object arg0, Object arg1, Object arg2, Object arg3)
-        throws MissingResourceException
-    {
+            throws MissingResourceException {
         Object[] o = new Object[4];
         o[0] = arg0;
         o[1] = arg1;
@@ -615,19 +600,19 @@
     }
 
     /**
-      * Get a message from resource.properties from the package of the given object.
-      * @param caller The calling object, used to get the package name and class loader
-      * @param locale The locale
-      * @param key The resource key
-      * @param arg0 The argument to place in variable {0}
-      * @param arg1 The argument to place in variable {1}
-      * @param arg2 The argument to place in variable {2}
-      * @param arg3 The argument to place in variable {3}
-      * @return The formatted message
-      */
+     * Get a message from resource.properties from the package of the given object.
+     *
+     * @param caller The calling object, used to get the package name and class loader
+     * @param locale The locale
+     * @param key    The resource key
+     * @param arg0   The argument to place in variable {0}
+     * @param arg1   The argument to place in variable {1}
+     * @param arg2   The argument to place in variable {2}
+     * @param arg3   The argument to place in variable {3}
+     * @return The formatted message
+     */
     public static String getString(Object caller, Locale locale, String key, Object arg0, Object arg1, Object arg2, Object arg3, Object arg4)
-        throws MissingResourceException
-    {
+            throws MissingResourceException {
         Object[] o = new Object[5];
         o[0] = arg0;
         o[1] = arg1;
@@ -638,32 +623,31 @@
     }
 
     /**
-      * Get a message from resource.properties from the package of the given object.
-      * @param caller The calling object, used to get the package name and class loader
-      * @param locale The locale
-      * @param key The resource key
-      * @param array An array of objects to place in corresponding variables
-      * @return The formatted message
-      */
+     * Get a message from resource.properties from the package of the given object.
+     *
+     * @param caller The calling object, used to get the package name and class loader
+     * @param locale The locale
+     * @param key    The resource key
+     * @param array  An array of objects to place in corresponding variables
+     * @return The formatted message
+     */
     public static String getString(Object caller, Locale locale, String key, Object[] args)
-        throws MissingResourceException
-    {
+            throws MissingResourceException {
         return getMessage(caller, BASE_NAME, locale, key, args);
     }
 
     // Workhorse that does the resource loading and key lookup
     public static String getMessage(Object caller, String basename, Locale locale, String key,
-                                       Object[] args)
-        throws MissingResourceException
-    {
+                                    Object[] args)
+            throws MissingResourceException {
         String msg = null;
         MissingResourceException firstEx = null;
         String fullName = null;
         Class curClass = null;
         boolean didNull = false;
-        
+
         if (caller != null) {
-            if(caller instanceof Class)
+            if (caller instanceof Class)
                 curClass = (Class) caller;
             else
                 curClass = caller.getClass();
@@ -680,20 +664,17 @@
                 int pos = pkgName.lastIndexOf(".");
                 if (pos > 0) {
                     fullName = pkgName.substring(0, pos + 1).replace('.', '/') + basename;
-                }
-                else {
+                } else {
                     fullName = basename;
                 }
-            }
-            else {
+            } else {
                 fullName = basename;
             }
 
             try {
                 RB rb = new RB(caller, fullName, locale);
                 msg = rb.getString(key, args);
-            }
-            catch (MissingResourceException ex) {
+            } catch (MissingResourceException ex) {
                 if (curClass == null) {
                     throw ex;
                 }
@@ -713,7 +694,7 @@
                 } else {
                     String cname = curClass.getName();
                     if (cname.startsWith("java.") ||
-                        cname.startsWith("javax.")) {
+                            cname.startsWith("javax.")) {
                         if (didNull)
                             throw firstEx;
                         didNull = true;
@@ -728,10 +709,9 @@
     }
 
     /**
-      * Clears the internal cache
-      */
-    public static void clearCache()
-    {
+     * Clears the internal cache
+     */
+    public static void clearCache() {
         propertyCache.clear();
     }
 }

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/Call.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/Call.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/Call.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/Call.java Wed Jul 27 00:57:39 2005
@@ -27,9 +27,9 @@
 import org.apache.axis2.context.ServiceContext;
 import org.apache.axis2.description.OperationDescription;
 import org.apache.axis2.description.ServiceDescription;
-import org.apache.axis2.engine.AxisFault;
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.soap.SOAPEnvelope;
+import org.apache.axis2.AxisFault;
 
 /**
  * This class is the pretty convineance class for the user without see the comlplexites of Axis2.
@@ -98,7 +98,7 @@
      * @param toSend   -  This should be OM Element (payload)
      *                 invocation behaves accordingly
      * @param callback
-     * @throws AxisFault
+     * @throws org.apache.axis2.AxisFault
      */
 
     public void invokeNonBlocking(
@@ -143,7 +143,7 @@
      * Assume the values for the ConfigurationContext and ServiceContext to make the NON WSDL cases simple.
      *
      * @return ServiceContext that has a ConfigurationContext set in and has assumed values.
-     * @throws AxisFault
+     * @throws org.apache.axis2.AxisFault
      */
     protected static ServiceContext assumeServiceContext(String clinetHome)
         throws AxisFault {

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/CallbackReceiver.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/CallbackReceiver.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/CallbackReceiver.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/CallbackReceiver.java Wed Jul 27 00:57:39 2005
@@ -4,8 +4,8 @@
 
 import org.apache.axis2.addressing.miheaders.RelatesTo;
 import org.apache.axis2.context.MessageContext;
-import org.apache.axis2.engine.AxisFault;
 import org.apache.axis2.engine.MessageReceiver;
+import org.apache.axis2.AxisFault;
 
 /**
  * This is a MessageReceiver that is used at the client side to accept the 

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/InOnlyMEPClient.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/InOnlyMEPClient.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/InOnlyMEPClient.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/InOnlyMEPClient.java Wed Jul 27 00:57:39 2005
@@ -29,8 +29,8 @@
 import org.apache.axis2.description.TransportOutDescription;
 import org.apache.axis2.engine.AxisConfiguration;
 import org.apache.axis2.engine.AxisEngine;
-import org.apache.axis2.engine.AxisFault;
 import org.apache.axis2.i18n.Messages;
+import org.apache.axis2.AxisFault;
 import org.apache.wsdl.WSDLConstants;
 
 /**
@@ -126,7 +126,7 @@
     /**
      * set the transport to used for sending the SOAP Message
      * @param senderTransport
-     * @throws AxisFault if the transport not found
+     * @throws org.apache.axis2.AxisFault if the transport not found
      */
     public void setSenderTransport(String senderTransport) throws AxisFault {
         AxisConfiguration axisConfiguration = 

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/InOutMEPClient.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/InOutMEPClient.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/InOutMEPClient.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/InOutMEPClient.java Wed Jul 27 00:57:39 2005
@@ -23,6 +23,7 @@
 import javax.xml.namespace.QName;
 
 import org.apache.axis2.Constants;
+import org.apache.axis2.AxisFault;
 import org.apache.axis2.addressing.EndpointReference;
 import org.apache.axis2.context.ConfigurationContext;
 import org.apache.axis2.context.MessageContext;
@@ -33,7 +34,6 @@
 import org.apache.axis2.description.TransportOutDescription;
 import org.apache.axis2.engine.AxisConfiguration;
 import org.apache.axis2.engine.AxisEngine;
-import org.apache.axis2.engine.AxisFault;
 import org.apache.axis2.i18n.Messages;
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.om.OMException;
@@ -257,9 +257,7 @@
 
         } catch (OMException e) {
             throw AxisFault.makeFault(e);
-        } catch (IOException e) {
-            throw AxisFault.makeFault(e);
-        }
+        } 
 
     }
 

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/ListenerManager.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/ListenerManager.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/ListenerManager.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/ListenerManager.java Wed Jul 27 00:57:39 2005
@@ -26,9 +26,9 @@
 import org.apache.axis2.addressing.EndpointReference;
 import org.apache.axis2.context.ConfigurationContext;
 import org.apache.axis2.description.TransportInDescription;
-import org.apache.axis2.engine.AxisFault;
 import org.apache.axis2.i18n.Messages;
 import org.apache.axis2.transport.TransportListener;
+import org.apache.axis2.AxisFault;
 
 /**
  * This manages the Listners, this class havely depends on the static constructs and should be 

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/MEPClient.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/MEPClient.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/MEPClient.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/MEPClient.java Wed Jul 27 00:57:39 2005
@@ -25,7 +25,6 @@
 import org.apache.axis2.description.OperationDescription;
 import org.apache.axis2.description.TransportOutDescription;
 import org.apache.axis2.engine.AxisConfiguration;
-import org.apache.axis2.engine.AxisFault;
 import org.apache.axis2.i18n.Messages;
 import org.apache.axis2.om.OMAbstractFactory;
 import org.apache.axis2.om.OMElement;
@@ -33,6 +32,7 @@
 import org.apache.axis2.soap.SOAPFactory;
 import org.apache.axis2.soap.impl.llom.soap11.SOAP11Constants;
 import org.apache.axis2.soap.impl.llom.soap12.SOAP12Constants;
+import org.apache.axis2.AxisFault;
 
 /**
  * This is the Super Class for all the MEPClients, All the MEPClient will extend this.

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/MessageSender.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/MessageSender.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/MessageSender.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/MessageSender.java Wed Jul 27 00:57:39 2005
@@ -24,8 +24,8 @@
 import org.apache.axis2.context.ServiceContext;
 import org.apache.axis2.description.OperationDescription;
 import org.apache.axis2.description.ServiceDescription;
-import org.apache.axis2.engine.AxisFault;
 import org.apache.axis2.om.OMElement;
+import org.apache.axis2.AxisFault;
 
 /**
  *    Message Sender is the class simmiler to the Call, one that provides much simpler API

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/Stub.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/Stub.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/Stub.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/Stub.java Wed Jul 27 00:57:39 2005
@@ -19,13 +19,13 @@
 import javax.xml.stream.XMLStreamReader;
 
 import org.apache.axis2.Constants;
+import org.apache.axis2.AxisFault;
 import org.apache.axis2.addressing.EndpointReference;
 import org.apache.axis2.context.ConfigurationContext;
 import org.apache.axis2.context.MessageContext;
 import org.apache.axis2.context.ServiceContext;
 import org.apache.axis2.deployment.DeploymentException;
 import org.apache.axis2.description.ServiceDescription;
-import org.apache.axis2.engine.AxisFault;
 import org.apache.axis2.om.OMAbstractFactory;
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.om.OMFactory;

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/TwoWayTransportBasedSender.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/TwoWayTransportBasedSender.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/TwoWayTransportBasedSender.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/clientapi/TwoWayTransportBasedSender.java Wed Jul 27 00:57:39 2005
@@ -18,10 +18,10 @@
 import org.apache.axis2.context.MessageContext;
 import org.apache.axis2.description.TransportInDescription;
 import org.apache.axis2.engine.AxisEngine;
-import org.apache.axis2.engine.AxisFault;
 import org.apache.axis2.i18n.Messages;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.transport.TransportUtils;
+import org.apache.axis2.AxisFault;
 
 /**
  * This works for only a two way transport, this class send the SOAP Message and wait till the\result arrives

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/context/ConfigurationContext.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/context/ConfigurationContext.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/context/ConfigurationContext.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/context/ConfigurationContext.java Wed Jul 27 00:57:39 2005
@@ -20,9 +20,9 @@
 
 import org.apache.axis2.description.ServiceDescription;
 import org.apache.axis2.engine.AxisConfiguration;
-import org.apache.axis2.engine.AxisFault;
 import org.apache.axis2.storage.AxisStorage;
 import org.apache.axis2.util.threadpool.ThreadPool;
+import org.apache.axis2.AxisFault;
 
 import javax.xml.namespace.QName;
 import java.io.File;

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/context/ConfigurationContextFactory.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/context/ConfigurationContextFactory.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/context/ConfigurationContextFactory.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/context/ConfigurationContextFactory.java Wed Jul 27 00:57:39 2005
@@ -8,12 +8,12 @@
 import org.apache.axis2.description.TransportOutDescription;
 import org.apache.axis2.engine.AxisConfiguration;
 import org.apache.axis2.engine.AxisConfigurationImpl;
-import org.apache.axis2.engine.AxisFault;
 import org.apache.axis2.modules.Module;
 import org.apache.axis2.phaseresolver.PhaseException;
 import org.apache.axis2.phaseresolver.PhaseResolver;
 import org.apache.axis2.transport.TransportListener;
 import org.apache.axis2.transport.TransportSender;
+import org.apache.axis2.AxisFault;
 
 import javax.xml.namespace.QName;
 import java.util.ArrayList;

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/context/MessageContext.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/context/MessageContext.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/context/MessageContext.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/context/MessageContext.java Wed Jul 27 00:57:39 2005
@@ -24,8 +24,8 @@
 import org.apache.axis2.description.TransportInDescription;
 import org.apache.axis2.description.TransportOutDescription;
 import org.apache.axis2.engine.AxisConfiguration;
-import org.apache.axis2.engine.AxisFault;
 import org.apache.axis2.soap.SOAPEnvelope;
+import org.apache.axis2.AxisFault;
 
 import javax.xml.namespace.QName;
 

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/context/OperationContext.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/context/OperationContext.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/context/OperationContext.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/context/OperationContext.java Wed Jul 27 00:57:39 2005
@@ -18,8 +18,8 @@
 
 import org.apache.axis2.description.OperationDescription;
 import org.apache.axis2.engine.AxisError;
-import org.apache.axis2.engine.AxisFault;
 import org.apache.axis2.i18n.Messages;
+import org.apache.axis2.AxisFault;
 import org.apache.wsdl.WSDLConstants;
 
 import java.util.Map;

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/context/OperationContextFactory.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/context/OperationContextFactory.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/context/OperationContextFactory.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/context/OperationContextFactory.java Wed Jul 27 00:57:39 2005
@@ -18,8 +18,8 @@
 package org.apache.axis2.context;
 
 import org.apache.axis2.description.OperationDescription;
-import org.apache.axis2.engine.AxisFault;
 import org.apache.axis2.i18n.Messages;
+import org.apache.axis2.AxisFault;
 import org.apache.wsdl.WSDLConstants;
 
 /**

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/deployment/DeploymentEngine.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/deployment/DeploymentEngine.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/deployment/DeploymentEngine.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/deployment/DeploymentEngine.java Wed Jul 27 00:57:39 2005
@@ -49,11 +49,11 @@
 import org.apache.axis2.description.ServiceDescription;
 import org.apache.axis2.engine.AxisConfiguration;
 import org.apache.axis2.engine.AxisConfigurationImpl;
-import org.apache.axis2.engine.AxisFault;
 import org.apache.axis2.engine.Handler;
 import org.apache.axis2.modules.Module;
 import org.apache.axis2.phaseresolver.PhaseException;
 import org.apache.axis2.phaseresolver.PhaseMetadata;
+import org.apache.axis2.AxisFault;
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
 
@@ -449,7 +449,7 @@
      * and it will also load the service handlers
      *
      * @param axisService
-     * @throws AxisFault
+     * @throws org.apache.axis2.AxisFault
      */
     private void loadServiceProperties(ServiceDescription axisService) throws AxisFault {
         Flow inflow = axisService.getInFlow();

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/deployment/DeploymentException.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/deployment/DeploymentException.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/deployment/DeploymentException.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/deployment/DeploymentException.java Wed Jul 27 00:57:39 2005
@@ -16,7 +16,8 @@
 
 package org.apache.axis2.deployment;
 
-import org.apache.axis2.engine.AxisFault;
+
+import org.apache.axis2.AxisFault;
 
 public class DeploymentException extends AxisFault {
     public DeploymentException(Throwable cause) {

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/deployment/DeploymentParser.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/deployment/DeploymentParser.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/deployment/DeploymentParser.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/deployment/DeploymentParser.java Wed Jul 27 00:57:39 2005
@@ -37,11 +37,11 @@
 import org.apache.axis2.description.TransportInDescription;
 import org.apache.axis2.description.TransportOutDescription;
 import org.apache.axis2.engine.AxisConfigurationImpl;
-import org.apache.axis2.engine.AxisFault;
 import org.apache.axis2.engine.AxisObserver;
 import org.apache.axis2.engine.MessageReceiver;
 import org.apache.axis2.transport.TransportListener;
 import org.apache.axis2.transport.TransportSender;
+import org.apache.axis2.AxisFault;
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
 

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/deployment/repository/util/ArchiveFileData.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/deployment/repository/util/ArchiveFileData.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/deployment/repository/util/ArchiveFileData.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/deployment/repository/util/ArchiveFileData.java Wed Jul 27 00:57:39 2005
@@ -17,7 +17,7 @@
 package org.apache.axis2.deployment.repository.util;
 
 import org.apache.axis2.deployment.DeploymentClassLoader;
-import org.apache.axis2.engine.AxisFault;
+import org.apache.axis2.AxisFault;
 
 import javax.xml.namespace.QName;
 import java.io.File;

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/description/OperationDescription.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/description/OperationDescription.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/description/OperationDescription.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/description/OperationDescription.java Wed Jul 27 00:57:39 2005
@@ -6,13 +6,13 @@
 import org.apache.axis2.context.OperationContextFactory;
 import org.apache.axis2.context.ServiceContext;
 import org.apache.axis2.engine.AxisError;
-import org.apache.axis2.engine.AxisFault;
 import org.apache.axis2.engine.MessageReceiver;
 import org.apache.axis2.engine.SOAPProcessingModelChecker;
 import org.apache.axis2.engine.Phase;
 import org.apache.axis2.i18n.Messages;
 import org.apache.axis2.phaseresolver.PhaseMetadata;
 import org.apache.axis2.phaseresolver.PhaseResolver;
+import org.apache.axis2.AxisFault;
 import org.apache.wsdl.WSDLConstants;
 import org.apache.wsdl.WSDLOperation;
 import org.apache.wsdl.impl.WSDLOperationImpl;

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/description/ServiceDescription.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/description/ServiceDescription.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/description/ServiceDescription.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/description/ServiceDescription.java Wed Jul 27 00:57:39 2005
@@ -19,9 +19,9 @@
 import com.ibm.wsdl.extensions.soap.SOAPConstants;
 import org.apache.axis2.context.MessageContext;
 import org.apache.axis2.context.ServiceContext;
-import org.apache.axis2.engine.AxisFault;
 import org.apache.axis2.engine.AxisConfiguration;
 import org.apache.axis2.phaseresolver.PhaseResolver;
+import org.apache.axis2.AxisFault;
 import org.apache.wsdl.WSDLBindingOperation;
 import org.apache.wsdl.WSDLEndpoint;
 import org.apache.wsdl.WSDLExtensibilityElement;

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/AbstractDispatcher.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/AbstractDispatcher.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/AbstractDispatcher.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/AbstractDispatcher.java Wed Jul 27 00:57:39 2005
@@ -22,6 +22,7 @@
 import org.apache.axis2.description.OperationDescription;
 import org.apache.axis2.description.ServiceDescription;
 import org.apache.axis2.handlers.AbstractHandler;
+import org.apache.axis2.AxisFault;
 
 import javax.xml.namespace.QName;
 
@@ -53,7 +54,7 @@
      * This is final, obivously not for overiding
      *
      * @param msgctx
-     * @throws AxisFault
+     * @throws org.apache.axis2.AxisFault
      */
     public final void invoke(MessageContext msgctx) throws AxisFault {
 

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/AddressingBasedDispatcher.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/AddressingBasedDispatcher.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/AddressingBasedDispatcher.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/AddressingBasedDispatcher.java Wed Jul 27 00:57:39 2005
@@ -20,6 +20,7 @@
 import org.apache.axis2.description.HandlerDescription;
 import org.apache.axis2.description.OperationDescription;
 import org.apache.axis2.description.ServiceDescription;
+import org.apache.axis2.AxisFault;
 
 import javax.xml.namespace.QName;
 

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/AxisConfiguration.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/AxisConfiguration.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/AxisConfiguration.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/AxisConfiguration.java Wed Jul 27 00:57:39 2005
@@ -20,6 +20,7 @@
 import org.apache.axis2.description.ServiceDescription;
 import org.apache.axis2.description.TransportInDescription;
 import org.apache.axis2.description.TransportOutDescription;
+import org.apache.axis2.AxisFault;
 
 import javax.xml.namespace.QName;
 import java.util.*;

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/AxisConfigurationImpl.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/AxisConfigurationImpl.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/AxisConfigurationImpl.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/AxisConfigurationImpl.java Wed Jul 27 00:57:39 2005
@@ -27,6 +27,7 @@
 import org.apache.axis2.description.TransportOutDescription;
 import org.apache.axis2.phaseresolver.PhaseMetadata;
 import org.apache.axis2.phaseresolver.PhaseResolver;
+import org.apache.axis2.AxisFault;
 
 import javax.xml.namespace.QName;
 import java.io.File;

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/AxisEngine.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/AxisEngine.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/AxisEngine.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/AxisEngine.java Wed Jul 27 00:57:39 2005
@@ -32,6 +32,7 @@
 import org.apache.axis2.soap.SOAPFaultReason;
 import org.apache.axis2.soap.impl.llom.soap12.SOAP12Constants;
 import org.apache.axis2.transport.TransportSender;
+import org.apache.axis2.AxisFault;
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
 

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/DependencyManager.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/DependencyManager.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/DependencyManager.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/DependencyManager.java Wed Jul 27 00:57:39 2005
@@ -18,6 +18,7 @@
 package org.apache.axis2.engine;
 
 import org.apache.axis2.context.MessageContext;
+import org.apache.axis2.AxisFault;
 
 import java.lang.reflect.InvocationTargetException;
 import java.lang.reflect.Method;

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/DispatchingChecker.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/DispatchingChecker.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/DispatchingChecker.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/DispatchingChecker.java Wed Jul 27 00:57:39 2005
@@ -20,6 +20,7 @@
 import org.apache.axis2.context.MessageContext;
 import org.apache.axis2.description.HandlerDescription;
 import org.apache.axis2.handlers.AbstractHandler;
+import org.apache.axis2.AxisFault;
 
 import javax.xml.namespace.QName;
 

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/Handler.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/Handler.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/Handler.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/Handler.java Wed Jul 27 00:57:39 2005
@@ -18,6 +18,7 @@
 import org.apache.axis2.context.MessageContext;
 import org.apache.axis2.description.HandlerDescription;
 import org.apache.axis2.description.Parameter;
+import org.apache.axis2.AxisFault;
 
 import javax.xml.namespace.QName;
 import java.io.Serializable;

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/MessageReceiver.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/MessageReceiver.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/MessageReceiver.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/MessageReceiver.java Wed Jul 27 00:57:39 2005
@@ -16,6 +16,7 @@
 package org.apache.axis2.engine;
 
 import org.apache.axis2.context.MessageContext;
+import org.apache.axis2.AxisFault;
 
 /**
  * This one receives the Message, what is does is not of concern for Axis2 (litirally).

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/Phase.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/Phase.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/Phase.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/Phase.java Wed Jul 27 00:57:39 2005
@@ -18,6 +18,7 @@
 import org.apache.axis2.context.MessageContext;
 import org.apache.axis2.description.HandlerDescription;
 import org.apache.axis2.phaseresolver.PhaseException;
+import org.apache.axis2.AxisFault;
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
 
@@ -132,7 +133,7 @@
      * If need to see how this works look at the stack!
      *
      * @param msgctx
-     * @throws AxisFault
+     * @throws org.apache.axis2.AxisFault
      */
     public void invoke(MessageContext msgctx) throws AxisFault {
         msgctx.setPausedPhaseName(this.getPhaseName());

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/RequestURIBasedDispatcher.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/RequestURIBasedDispatcher.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/RequestURIBasedDispatcher.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/RequestURIBasedDispatcher.java Wed Jul 27 00:57:39 2005
@@ -21,6 +21,7 @@
 import org.apache.axis2.description.OperationDescription;
 import org.apache.axis2.description.ServiceDescription;
 import org.apache.axis2.util.Utils;
+import org.apache.axis2.AxisFault;
 
 import javax.xml.namespace.QName;
 

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/SOAPActionBasedDispatcher.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/SOAPActionBasedDispatcher.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/SOAPActionBasedDispatcher.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/SOAPActionBasedDispatcher.java Wed Jul 27 00:57:39 2005
@@ -19,6 +19,7 @@
 import org.apache.axis2.description.HandlerDescription;
 import org.apache.axis2.description.OperationDescription;
 import org.apache.axis2.description.ServiceDescription;
+import org.apache.axis2.AxisFault;
 
 import javax.xml.namespace.QName;
 

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/SOAPMessageBodyBasedDispatcher.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/SOAPMessageBodyBasedDispatcher.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/SOAPMessageBodyBasedDispatcher.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/SOAPMessageBodyBasedDispatcher.java Wed Jul 27 00:57:39 2005
@@ -22,6 +22,7 @@
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.om.OMNamespace;
 import org.apache.axis2.util.Utils;
+import org.apache.axis2.AxisFault;
 
 import javax.xml.namespace.QName;
 

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/SOAPProcessingModelChecker.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/SOAPProcessingModelChecker.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/SOAPProcessingModelChecker.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/SOAPProcessingModelChecker.java Wed Jul 27 00:57:39 2005
@@ -25,6 +25,7 @@
 import org.apache.axis2.soap.SOAPHeaderBlock;
 import org.apache.axis2.soap.impl.llom.soap11.SOAP11Constants;
 import org.apache.axis2.soap.impl.llom.soap12.SOAP12Constants;
+import org.apache.axis2.AxisFault;
 
 /**
  * This handler checks that the SOAP processing model rules have been followed

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/handlers/AbstractHandler.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/handlers/AbstractHandler.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/handlers/AbstractHandler.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/handlers/AbstractHandler.java Wed Jul 27 00:57:39 2005
@@ -18,8 +18,8 @@
 import org.apache.axis2.context.MessageContext;
 import org.apache.axis2.description.HandlerDescription;
 import org.apache.axis2.description.Parameter;
-import org.apache.axis2.engine.AxisFault;
 import org.apache.axis2.engine.Handler;
+import org.apache.axis2.AxisFault;
 
 import javax.xml.namespace.QName;
 

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/modules/Module.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/modules/Module.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/modules/Module.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/modules/Module.java Wed Jul 27 00:57:39 2005
@@ -17,7 +17,7 @@
 package org.apache.axis2.modules;
 
 import org.apache.axis2.engine.AxisConfiguration;
-import org.apache.axis2.engine.AxisFault;
+import org.apache.axis2.AxisFault;
 
 /**
  * Every module provides an implementation of this class. Modules are in one of

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/phaseresolver/PhaseException.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/phaseresolver/PhaseException.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/phaseresolver/PhaseException.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/phaseresolver/PhaseException.java Wed Jul 27 00:57:39 2005
@@ -15,7 +15,8 @@
  */
 package org.apache.axis2.phaseresolver;
 
-import org.apache.axis2.engine.AxisFault;
+
+import org.apache.axis2.AxisFault;
 
 /**
  * Class PhaseException

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/phaseresolver/PhaseResolver.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/phaseresolver/PhaseResolver.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/phaseresolver/PhaseResolver.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/phaseresolver/PhaseResolver.java Wed Jul 27 00:57:39 2005
@@ -24,9 +24,9 @@
 import org.apache.axis2.description.TransportOutDescription;
 import org.apache.axis2.engine.AxisConfiguration;
 import org.apache.axis2.engine.AxisConfigurationImpl;
-import org.apache.axis2.engine.AxisFault;
 import org.apache.axis2.engine.Phase;
 import org.apache.axis2.phaseresolver.util.PhaseValidator;
+import org.apache.axis2.AxisFault;
 
 import javax.xml.namespace.QName;
 import java.util.ArrayList;

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/AbstractInMessageReceiver.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/AbstractInMessageReceiver.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/AbstractInMessageReceiver.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/AbstractInMessageReceiver.java Wed Jul 27 00:57:39 2005
@@ -16,7 +16,7 @@
 package org.apache.axis2.receivers;
 
 import org.apache.axis2.context.MessageContext;
-import org.apache.axis2.engine.AxisFault;
+import org.apache.axis2.AxisFault;
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
 

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/AbstractInOutAsyncMessageReceiver.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/AbstractInOutAsyncMessageReceiver.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/AbstractInOutAsyncMessageReceiver.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/AbstractInOutAsyncMessageReceiver.java Wed Jul 27 00:57:39 2005
@@ -17,7 +17,7 @@
 
 import org.apache.axis2.context.MessageContext;
 import org.apache.axis2.engine.AxisEngine;
-import org.apache.axis2.engine.AxisFault;
+import org.apache.axis2.AxisFault;
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
 

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/AbstractInOutSyncMessageReceiver.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/AbstractInOutSyncMessageReceiver.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/AbstractInOutSyncMessageReceiver.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/AbstractInOutSyncMessageReceiver.java Wed Jul 27 00:57:39 2005
@@ -20,8 +20,8 @@
 import org.apache.axis2.addressing.miheaders.RelatesTo;
 import org.apache.axis2.context.MessageContext;
 import org.apache.axis2.engine.AxisEngine;
-import org.apache.axis2.engine.AxisFault;
 import org.apache.axis2.transport.http.HTTPConstants;
+import org.apache.axis2.AxisFault;
 
 /**
  * This is the Absract IN-OUT MEP MessageReceiver. The

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/AbstractMessageReceiver.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/AbstractMessageReceiver.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/AbstractMessageReceiver.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/AbstractMessageReceiver.java Wed Jul 27 00:57:39 2005
@@ -17,12 +17,12 @@
 package org.apache.axis2.receivers;
 
 import org.apache.axis2.Constants;
+import org.apache.axis2.AxisFault;
 import org.apache.axis2.context.ConfigurationContext;
 import org.apache.axis2.context.MessageContext;
 import org.apache.axis2.context.SessionContext;
 import org.apache.axis2.description.Parameter;
 import org.apache.axis2.description.ServiceDescription;
-import org.apache.axis2.engine.AxisFault;
 import org.apache.axis2.engine.MessageReceiver;
 import org.apache.axis2.i18n.Messages;
 import org.apache.axis2.om.OMAbstractFactory;

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/AbstractRobustInMessageReceiver.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/AbstractRobustInMessageReceiver.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/AbstractRobustInMessageReceiver.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/AbstractRobustInMessageReceiver.java Wed Jul 27 00:57:39 2005
@@ -17,7 +17,7 @@
 
 import org.apache.axis2.context.MessageContext;
 import org.apache.axis2.engine.AxisEngine;
-import org.apache.axis2.engine.AxisFault;
+import org.apache.axis2.AxisFault;
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
 

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/RawXMLINOnlyMessageReceiver.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/RawXMLINOnlyMessageReceiver.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/RawXMLINOnlyMessageReceiver.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/RawXMLINOnlyMessageReceiver.java Wed Jul 27 00:57:39 2005
@@ -16,9 +16,9 @@
 package org.apache.axis2.receivers;
 
 import org.apache.axis2.Constants;
+import org.apache.axis2.AxisFault;
 import org.apache.axis2.context.MessageContext;
 import org.apache.axis2.description.OperationDescription;
-import org.apache.axis2.engine.AxisFault;
 import org.apache.axis2.engine.DependencyManager;
 import org.apache.axis2.engine.MessageReceiver;
 import org.apache.axis2.i18n.Messages;

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/RawXMLINOutMessageReceiver.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/RawXMLINOutMessageReceiver.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/RawXMLINOutMessageReceiver.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/RawXMLINOutMessageReceiver.java Wed Jul 27 00:57:39 2005
@@ -16,9 +16,9 @@
 package org.apache.axis2.receivers;
 
 import org.apache.axis2.Constants;
+import org.apache.axis2.AxisFault;
 import org.apache.axis2.context.MessageContext;
 import org.apache.axis2.description.OperationDescription;
-import org.apache.axis2.engine.AxisFault;
 import org.apache.axis2.engine.DependencyManager;
 import org.apache.axis2.engine.MessageReceiver;
 import org.apache.axis2.i18n.Messages;

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/ServerCallback.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/ServerCallback.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/ServerCallback.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/receivers/ServerCallback.java Wed Jul 27 00:57:39 2005
@@ -16,7 +16,7 @@
 package org.apache.axis2.receivers;
 
 import org.apache.axis2.context.MessageContext;
-import org.apache.axis2.engine.AxisFault;
+import org.apache.axis2.AxisFault;
 
 
 public interface ServerCallback {

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/AbstractTransportSender.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/AbstractTransportSender.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/AbstractTransportSender.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/AbstractTransportSender.java Wed Jul 27 00:57:39 2005
@@ -16,13 +16,13 @@
 package org.apache.axis2.transport;
 
 import org.apache.axis2.Constants;
+import org.apache.axis2.AxisFault;
 import org.apache.axis2.addressing.AddressingConstants;
 import org.apache.axis2.addressing.EndpointReference;
 import org.apache.axis2.context.ConfigurationContext;
 import org.apache.axis2.context.MessageContext;
 import org.apache.axis2.description.HandlerDescription;
 import org.apache.axis2.description.TransportOutDescription;
-import org.apache.axis2.engine.AxisFault;
 import org.apache.axis2.handlers.AbstractHandler;
 import org.apache.axis2.i18n.Messages;
 import org.apache.axis2.om.OMElement;

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/EmailReceiver.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/EmailReceiver.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/EmailReceiver.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/EmailReceiver.java Wed Jul 27 00:57:39 2005
@@ -17,8 +17,8 @@
  */
 package org.apache.axis2.transport;
 
-import org.apache.axis2.engine.AxisFault;
 import org.apache.axis2.i18n.Messages;
+import org.apache.axis2.AxisFault;
 
 import javax.mail.Authenticator;
 import javax.mail.Folder;

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/TransportListener.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/TransportListener.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/TransportListener.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/TransportListener.java Wed Jul 27 00:57:39 2005
@@ -18,7 +18,7 @@
 import org.apache.axis2.addressing.EndpointReference;
 import org.apache.axis2.context.ConfigurationContext;
 import org.apache.axis2.description.TransportInDescription;
-import org.apache.axis2.engine.AxisFault;
+import org.apache.axis2.AxisFault;
 
 /**
  * Class TransportListener

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/TransportSender.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/TransportSender.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/TransportSender.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/TransportSender.java Wed Jul 27 00:57:39 2005
@@ -18,8 +18,8 @@
 import org.apache.axis2.context.ConfigurationContext;
 import org.apache.axis2.context.MessageContext;
 import org.apache.axis2.description.TransportOutDescription;
-import org.apache.axis2.engine.AxisFault;
 import org.apache.axis2.engine.Handler;
+import org.apache.axis2.AxisFault;
 
 /**
  * This send the SOAP Message to other SOAP nodes and this alone write the SOAP Message to the 
@@ -30,14 +30,14 @@
      * Initialize
      * @param confContext
      * @param transportOut
-     * @throws AxisFault
+     * @throws org.apache.axis2.AxisFault
      */
     public void init(ConfigurationContext confContext,
                      TransportOutDescription transportOut) throws AxisFault;
     /**
      * Clean up
      * @param msgContext
-     * @throws AxisFault
+     * @throws org.apache.axis2.AxisFault
      */                     
     public void cleanUp(MessageContext msgContext) throws AxisFault;
 

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/TransportUtils.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/TransportUtils.java?rev=225478&r1=225477&r2=225478&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/TransportUtils.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/TransportUtils.java Wed Jul 27 00:57:39 2005
@@ -17,7 +17,6 @@
 
 import org.apache.axis2.context.MessageContext;
 import org.apache.axis2.context.OperationContext;
-import org.apache.axis2.engine.AxisFault;
 import org.apache.axis2.i18n.Messages;
 import org.apache.axis2.om.impl.llom.builder.StAXBuilder;
 import org.apache.axis2.om.impl.llom.builder.StAXOMBuilder;
@@ -27,6 +26,7 @@
 import org.apache.axis2.soap.impl.llom.soap11.SOAP11Factory;
 import org.apache.axis2.transport.http.HTTPConstants;
 import org.apache.axis2.transport.http.HTTPTransportUtils;
+import org.apache.axis2.AxisFault;
 
 import javax.xml.stream.XMLInputFactory;
 import javax.xml.stream.XMLStreamReader;