You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by cd...@apache.org on 2015/07/30 13:19:38 UTC

[1/4] flex-blazeds git commit: Removed all "exclude" javadoc annotations

Repository: flex-blazeds
Updated Branches:
  refs/heads/develop f80e095f5 -> 56d1a01dc


http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/proxy/src/flex/management/runtime/messaging/services/http/HTTPProxyDestinationControlMBean.java
----------------------------------------------------------------------
diff --git a/modules/proxy/src/flex/management/runtime/messaging/services/http/HTTPProxyDestinationControlMBean.java b/modules/proxy/src/flex/management/runtime/messaging/services/http/HTTPProxyDestinationControlMBean.java
index 984da93..2314785 100755
--- a/modules/proxy/src/flex/management/runtime/messaging/services/http/HTTPProxyDestinationControlMBean.java
+++ b/modules/proxy/src/flex/management/runtime/messaging/services/http/HTTPProxyDestinationControlMBean.java
@@ -22,7 +22,7 @@ import java.util.Date;
 import flex.management.runtime.messaging.DestinationControlMBean;
 
 /**
- * @exclude
+ *
  * Defines the runtime monitoring and management interface for managed
  * <code>HTTPProxyDestination</code>s.
  */

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/proxy/src/flex/management/runtime/messaging/services/http/SOAPProxyAdapterControl.java
----------------------------------------------------------------------
diff --git a/modules/proxy/src/flex/management/runtime/messaging/services/http/SOAPProxyAdapterControl.java b/modules/proxy/src/flex/management/runtime/messaging/services/http/SOAPProxyAdapterControl.java
index 240f585..f68a545 100755
--- a/modules/proxy/src/flex/management/runtime/messaging/services/http/SOAPProxyAdapterControl.java
+++ b/modules/proxy/src/flex/management/runtime/messaging/services/http/SOAPProxyAdapterControl.java
@@ -20,7 +20,7 @@ import flex.management.BaseControl;
 import flex.messaging.services.http.SOAPProxyAdapter;
 
 /**
- * @exclude
+ *
  * The <code>SOAPProxyAdapterControl</code> class is the MBean implementation
  * for monitoring and managing <code>SOAPProxyAdapter</code>s at runtime.
  */
@@ -42,7 +42,7 @@ public class SOAPProxyAdapterControl extends HTTPProxyAdapterControl implements
     }
 
     /**
-     * @exclude
+     *
      *  (non-Javadoc)
      * @see flex.management.BaseControlMBean#getType()
      */

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/proxy/src/flex/messaging/services/http/ExternalProxySettings.java
----------------------------------------------------------------------
diff --git a/modules/proxy/src/flex/messaging/services/http/ExternalProxySettings.java b/modules/proxy/src/flex/messaging/services/http/ExternalProxySettings.java
index 76d7837..d425b5f 100755
--- a/modules/proxy/src/flex/messaging/services/http/ExternalProxySettings.java
+++ b/modules/proxy/src/flex/messaging/services/http/ExternalProxySettings.java
@@ -173,7 +173,7 @@ public class ExternalProxySettings
     }
 
     /**
-     * @exclude
+     *
      */
     public static boolean isDotNet()
     {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/proxy/src/flex/messaging/services/http/HostConfigurationSettings.java
----------------------------------------------------------------------
diff --git a/modules/proxy/src/flex/messaging/services/http/HostConfigurationSettings.java b/modules/proxy/src/flex/messaging/services/http/HostConfigurationSettings.java
index 13d57cc..6722cee 100755
--- a/modules/proxy/src/flex/messaging/services/http/HostConfigurationSettings.java
+++ b/modules/proxy/src/flex/messaging/services/http/HostConfigurationSettings.java
@@ -17,7 +17,7 @@
 package flex.messaging.services.http;
 
 /**
- * @exclude
+ *
  * Collects the properties needed to create an Apache Commons HTTPClient
  * HostConfiguration. Holds all of the variables needed to describe an HTTP
  * connection to a host: remote host, port and protocol, proxy host and port,

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/proxy/src/flex/messaging/services/http/httpclient/EasySSLProtocolSocketFactory.java
----------------------------------------------------------------------
diff --git a/modules/proxy/src/flex/messaging/services/http/httpclient/EasySSLProtocolSocketFactory.java b/modules/proxy/src/flex/messaging/services/http/httpclient/EasySSLProtocolSocketFactory.java
index d40efcc..9cab141 100755
--- a/modules/proxy/src/flex/messaging/services/http/httpclient/EasySSLProtocolSocketFactory.java
+++ b/modules/proxy/src/flex/messaging/services/http/httpclient/EasySSLProtocolSocketFactory.java
@@ -51,7 +51,7 @@ import java.net.UnknownHostException;
 import flex.messaging.util.Trace;
 
 /**
- * @exclude
+ *
  * <p>
  * EasySSLProtocolSocketFactory can be used to creats SSL {@link Socket}s
  * that accept self-signed certificates.
@@ -141,8 +141,7 @@ public class EasySSLProtocolSocketFactory implements SecureProtocolSocketFactory
                                int port,
                                InetAddress clientHost,
                                int clientPort)
-            throws IOException, UnknownHostException
-    {
+            throws IOException {
 
         return getSSLContext().getSocketFactory().createSocket(host,
                 port,
@@ -173,8 +172,7 @@ public class EasySSLProtocolSocketFactory implements SecureProtocolSocketFactory
                                final int port,
                                final InetAddress localAddress,
                                final int localPort,
-                               final HttpConnectionParams params) throws IOException, UnknownHostException, ConnectTimeoutException
-    {
+                               final HttpConnectionParams params) throws IOException {
         if (params == null)
         {
             throw new IllegalArgumentException("Parameters may not be null");
@@ -193,8 +191,7 @@ public class EasySSLProtocolSocketFactory implements SecureProtocolSocketFactory
 
     /** {@inheritDoc} */
     public Socket createSocket(String host, int port)
-            throws IOException, UnknownHostException
-    {
+            throws IOException {
         return getSSLContext().getSocketFactory().createSocket(host,
                 port);
     }
@@ -204,8 +201,7 @@ public class EasySSLProtocolSocketFactory implements SecureProtocolSocketFactory
                                String host,
                                int port,
                                boolean autoClose)
-            throws IOException, UnknownHostException
-    {
+            throws IOException {
         return getSSLContext().getSocketFactory().createSocket(socket,
                 host,
                 port,

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/proxy/src/flex/messaging/services/http/httpclient/EasyX509TrustManager.java
----------------------------------------------------------------------
diff --git a/modules/proxy/src/flex/messaging/services/http/httpclient/EasyX509TrustManager.java b/modules/proxy/src/flex/messaging/services/http/httpclient/EasyX509TrustManager.java
index 1c825f2..692e9f7 100755
--- a/modules/proxy/src/flex/messaging/services/http/httpclient/EasyX509TrustManager.java
+++ b/modules/proxy/src/flex/messaging/services/http/httpclient/EasyX509TrustManager.java
@@ -46,7 +46,7 @@ import java.security.cert.X509Certificate;
 import flex.messaging.util.Trace;
 
 /**
- * @exclude
+ *
  * <p>
  * EasyX509TrustManager unlike default {@link javax.net.ssl.X509TrustManager} accepts
  * self-signed certificates.

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/proxy/src/flex/messaging/services/http/httpclient/FlexGetMethod.java
----------------------------------------------------------------------
diff --git a/modules/proxy/src/flex/messaging/services/http/httpclient/FlexGetMethod.java b/modules/proxy/src/flex/messaging/services/http/httpclient/FlexGetMethod.java
index 69a1509..c357fcd 100755
--- a/modules/proxy/src/flex/messaging/services/http/httpclient/FlexGetMethod.java
+++ b/modules/proxy/src/flex/messaging/services/http/httpclient/FlexGetMethod.java
@@ -22,7 +22,7 @@ import org.apache.commons.httpclient.NameValuePair;
 import org.apache.commons.httpclient.methods.GetMethod;
 
 /**
- * @exclude
+ *
  * Simple wrapper around PostMethod that exposes one method for ProxyServlet.
  */
 public class FlexGetMethod extends GetMethod

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/proxy/src/flex/messaging/services/http/httpclient/FlexPostMethod.java
----------------------------------------------------------------------
diff --git a/modules/proxy/src/flex/messaging/services/http/httpclient/FlexPostMethod.java b/modules/proxy/src/flex/messaging/services/http/httpclient/FlexPostMethod.java
index 73b3133..9a728c6 100755
--- a/modules/proxy/src/flex/messaging/services/http/httpclient/FlexPostMethod.java
+++ b/modules/proxy/src/flex/messaging/services/http/httpclient/FlexPostMethod.java
@@ -22,7 +22,7 @@ import org.apache.commons.httpclient.NameValuePair;
 import org.apache.commons.httpclient.methods.PostMethod;
 
 /**
- * @exclude
+ *
  * Simple wrapper around PostMethod that exposes one method for ProxyServlet.
  */
 public class FlexPostMethod extends PostMethod

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/proxy/src/flex/messaging/services/http/proxy/AccessFilter.java
----------------------------------------------------------------------
diff --git a/modules/proxy/src/flex/messaging/services/http/proxy/AccessFilter.java b/modules/proxy/src/flex/messaging/services/http/proxy/AccessFilter.java
index 250551e..e3f37fc 100755
--- a/modules/proxy/src/flex/messaging/services/http/proxy/AccessFilter.java
+++ b/modules/proxy/src/flex/messaging/services/http/proxy/AccessFilter.java
@@ -21,7 +21,7 @@ import flex.messaging.FlexContext;
 import javax.servlet.http.HttpServletRequest;
 
 /**
- * @exclude
+ *
  * Determines whether overall access to the proxy is allowed for a request.
  */
 public class AccessFilter extends ProxyFilter

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/proxy/src/flex/messaging/services/http/proxy/CookieInfo.java
----------------------------------------------------------------------
diff --git a/modules/proxy/src/flex/messaging/services/http/proxy/CookieInfo.java b/modules/proxy/src/flex/messaging/services/http/proxy/CookieInfo.java
index 9c729bd..2c2fb40 100755
--- a/modules/proxy/src/flex/messaging/services/http/proxy/CookieInfo.java
+++ b/modules/proxy/src/flex/messaging/services/http/proxy/CookieInfo.java
@@ -17,7 +17,7 @@
 package flex.messaging.services.http.proxy;
 
 /**
- * @exclude
+ *
  */
 public class CookieInfo
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/proxy/src/flex/messaging/services/http/proxy/ErrorFilter.java
----------------------------------------------------------------------
diff --git a/modules/proxy/src/flex/messaging/services/http/proxy/ErrorFilter.java b/modules/proxy/src/flex/messaging/services/http/proxy/ErrorFilter.java
index 9c29004..52a0778 100755
--- a/modules/proxy/src/flex/messaging/services/http/proxy/ErrorFilter.java
+++ b/modules/proxy/src/flex/messaging/services/http/proxy/ErrorFilter.java
@@ -23,7 +23,7 @@ import flex.messaging.util.Trace;
 import flex.messaging.MessageException;
 
 /**
- * @exclude
+ *
  * Wraps filters with exception handling.
  */
 public class ErrorFilter extends ProxyFilter

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/proxy/src/flex/messaging/services/http/proxy/ProxyConstants.java
----------------------------------------------------------------------
diff --git a/modules/proxy/src/flex/messaging/services/http/proxy/ProxyConstants.java b/modules/proxy/src/flex/messaging/services/http/proxy/ProxyConstants.java
index 48f5201..c7c8fba 100755
--- a/modules/proxy/src/flex/messaging/services/http/proxy/ProxyConstants.java
+++ b/modules/proxy/src/flex/messaging/services/http/proxy/ProxyConstants.java
@@ -17,7 +17,7 @@
 package flex.messaging.services.http.proxy;
 
 /**
- * @exclude
+ *
  * Contants related to the proxy (shared with .NET).
  */
 public class ProxyConstants

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/proxy/src/flex/messaging/services/http/proxy/ProxyContext.java
----------------------------------------------------------------------
diff --git a/modules/proxy/src/flex/messaging/services/http/proxy/ProxyContext.java b/modules/proxy/src/flex/messaging/services/http/proxy/ProxyContext.java
index 3e9f60e..1de92bb 100755
--- a/modules/proxy/src/flex/messaging/services/http/proxy/ProxyContext.java
+++ b/modules/proxy/src/flex/messaging/services/http/proxy/ProxyContext.java
@@ -31,7 +31,7 @@ import java.util.Set;
 import org.apache.commons.httpclient.Cookie;
 
 /**
- * @exclude
+ *
  * Store all the information needed for a proxy request.
  */
 public class ProxyContext extends SharedProxyContext

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/proxy/src/flex/messaging/services/http/proxy/ProxyContextFilter.java
----------------------------------------------------------------------
diff --git a/modules/proxy/src/flex/messaging/services/http/proxy/ProxyContextFilter.java b/modules/proxy/src/flex/messaging/services/http/proxy/ProxyContextFilter.java
index 2e3c0f6..85ece8a 100755
--- a/modules/proxy/src/flex/messaging/services/http/proxy/ProxyContextFilter.java
+++ b/modules/proxy/src/flex/messaging/services/http/proxy/ProxyContextFilter.java
@@ -35,7 +35,7 @@ import java.net.URL;
 import java.net.UnknownHostException;
 
 /**
- * @exclude
+ *
  * Fills in ProxyContext data for use by ProxyFilters within HttpProxyAdapter.
  */
 public class ProxyContextFilter extends ProxyFilter

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/proxy/src/flex/messaging/services/http/proxy/ProxyException.java
----------------------------------------------------------------------
diff --git a/modules/proxy/src/flex/messaging/services/http/proxy/ProxyException.java b/modules/proxy/src/flex/messaging/services/http/proxy/ProxyException.java
index 9287d3c..21f4b90 100755
--- a/modules/proxy/src/flex/messaging/services/http/proxy/ProxyException.java
+++ b/modules/proxy/src/flex/messaging/services/http/proxy/ProxyException.java
@@ -19,7 +19,7 @@ package flex.messaging.services.http.proxy;
 import flex.messaging.MessageException;
 
 /**
- * @exclude
+ *
  * Simple exception used to get back to ErrorFilter from other filters.
  */
 public class ProxyException extends MessageException

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/proxy/src/flex/messaging/services/http/proxy/ProxyFilter.java
----------------------------------------------------------------------
diff --git a/modules/proxy/src/flex/messaging/services/http/proxy/ProxyFilter.java b/modules/proxy/src/flex/messaging/services/http/proxy/ProxyFilter.java
index 5c8741b..e3a3a7b 100755
--- a/modules/proxy/src/flex/messaging/services/http/proxy/ProxyFilter.java
+++ b/modules/proxy/src/flex/messaging/services/http/proxy/ProxyFilter.java
@@ -18,7 +18,7 @@ package flex.messaging.services.http.proxy;
 
 
 /**
- * @exclude
+ *
  * Base filter definition that defines the filter contract.
  * Filters perform pre- and post-processing duties on the ProxyContext
  */

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/proxy/src/flex/messaging/services/http/proxy/ProxyUtil.java
----------------------------------------------------------------------
diff --git a/modules/proxy/src/flex/messaging/services/http/proxy/ProxyUtil.java b/modules/proxy/src/flex/messaging/services/http/proxy/ProxyUtil.java
index 7c40fd8..67d6fdc 100755
--- a/modules/proxy/src/flex/messaging/services/http/proxy/ProxyUtil.java
+++ b/modules/proxy/src/flex/messaging/services/http/proxy/ProxyUtil.java
@@ -19,7 +19,7 @@ package flex.messaging.services.http.proxy;
 import org.apache.commons.httpclient.auth.AuthScope;
 
 /**
- * @exclude
+ *
  * Methods used by multiple proxy classes.
  */
 public class ProxyUtil

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/proxy/src/flex/messaging/services/http/proxy/RequestFilter.java
----------------------------------------------------------------------
diff --git a/modules/proxy/src/flex/messaging/services/http/proxy/RequestFilter.java b/modules/proxy/src/flex/messaging/services/http/proxy/RequestFilter.java
index d854c22..82fed63 100755
--- a/modules/proxy/src/flex/messaging/services/http/proxy/RequestFilter.java
+++ b/modules/proxy/src/flex/messaging/services/http/proxy/RequestFilter.java
@@ -57,7 +57,7 @@ import java.util.Map;
 import java.util.TreeMap;
 
 /**
- * @exclude
+ *
  * Sends the request to the endpoint, including custom copying of headers and cookies.
  */
 public class RequestFilter extends ProxyFilter

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/proxy/src/flex/messaging/services/http/proxy/RequestUtil.java
----------------------------------------------------------------------
diff --git a/modules/proxy/src/flex/messaging/services/http/proxy/RequestUtil.java b/modules/proxy/src/flex/messaging/services/http/proxy/RequestUtil.java
index 6b588ea..e610980 100755
--- a/modules/proxy/src/flex/messaging/services/http/proxy/RequestUtil.java
+++ b/modules/proxy/src/flex/messaging/services/http/proxy/RequestUtil.java
@@ -20,7 +20,7 @@ import flex.messaging.log.Log;
 import flex.messaging.services.HTTPProxyService;
 
 /**
- * @exclude
+ *
  * Request methods shared by J2EE and .NET.
  */
 public class RequestUtil

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/proxy/src/flex/messaging/services/http/proxy/ResponseFilter.java
----------------------------------------------------------------------
diff --git a/modules/proxy/src/flex/messaging/services/http/proxy/ResponseFilter.java b/modules/proxy/src/flex/messaging/services/http/proxy/ResponseFilter.java
index 6078f71..80231a6 100755
--- a/modules/proxy/src/flex/messaging/services/http/proxy/ResponseFilter.java
+++ b/modules/proxy/src/flex/messaging/services/http/proxy/ResponseFilter.java
@@ -43,7 +43,7 @@ import flex.messaging.services.HTTPProxyService;
 import flex.messaging.log.Log;
 
 /**
- * @exclude
+ *
  * Send the response to the client, including custom copying of headers and cookies.
  */
 public class ResponseFilter extends ProxyFilter

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/proxy/src/flex/messaging/services/http/proxy/ResponseUtil.java
----------------------------------------------------------------------
diff --git a/modules/proxy/src/flex/messaging/services/http/proxy/ResponseUtil.java b/modules/proxy/src/flex/messaging/services/http/proxy/ResponseUtil.java
index 047288b..a355b31 100755
--- a/modules/proxy/src/flex/messaging/services/http/proxy/ResponseUtil.java
+++ b/modules/proxy/src/flex/messaging/services/http/proxy/ResponseUtil.java
@@ -17,7 +17,7 @@
 package flex.messaging.services.http.proxy;
 
 /**
- * @exclude
+ *
  * Response methods shared by J2EE and .NET.
  */
 public class ResponseUtil

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/proxy/src/flex/messaging/services/http/proxy/SecurityFilter.java
----------------------------------------------------------------------
diff --git a/modules/proxy/src/flex/messaging/services/http/proxy/SecurityFilter.java b/modules/proxy/src/flex/messaging/services/http/proxy/SecurityFilter.java
index 37d2a6a..17d66c7 100755
--- a/modules/proxy/src/flex/messaging/services/http/proxy/SecurityFilter.java
+++ b/modules/proxy/src/flex/messaging/services/http/proxy/SecurityFilter.java
@@ -29,7 +29,7 @@ import javax.servlet.http.HttpServletResponse;
 import java.util.Enumeration;
 
 /**
- * @exclude
+ *
  * Handles whitelist/access and authentication/authorization system for requests.  Checks URL to make sure we
  * accept it.  Sets credentials if needed on the request.  After the request is made, changes response for
  * security info if needed

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/proxy/src/flex/messaging/services/http/proxy/SharedProxyContext.java
----------------------------------------------------------------------
diff --git a/modules/proxy/src/flex/messaging/services/http/proxy/SharedProxyContext.java b/modules/proxy/src/flex/messaging/services/http/proxy/SharedProxyContext.java
index 8a2a9ec..a5486a0 100755
--- a/modules/proxy/src/flex/messaging/services/http/proxy/SharedProxyContext.java
+++ b/modules/proxy/src/flex/messaging/services/http/proxy/SharedProxyContext.java
@@ -17,7 +17,7 @@
 package flex.messaging.services.http.proxy;
 
 /**
- * @exclude
+ *
  * Store all the information needed for a proxy request that's used in flex.server.common.proxy.
  */
 public class SharedProxyContext

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/proxy/src/flex/messaging/services/http/proxy/Target.java
----------------------------------------------------------------------
diff --git a/modules/proxy/src/flex/messaging/services/http/proxy/Target.java b/modules/proxy/src/flex/messaging/services/http/proxy/Target.java
index d2d98c7..6805c37 100755
--- a/modules/proxy/src/flex/messaging/services/http/proxy/Target.java
+++ b/modules/proxy/src/flex/messaging/services/http/proxy/Target.java
@@ -21,7 +21,7 @@ import org.apache.commons.httpclient.HostConfiguration;
 import java.net.URL;
 
 /**
- * @exclude
+ *
  * Encapsulates information about a proxy target.
  */
 public class Target

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/remoting/src/flex/messaging/services/RemotingService.java
----------------------------------------------------------------------
diff --git a/modules/remoting/src/flex/messaging/services/RemotingService.java b/modules/remoting/src/flex/messaging/services/RemotingService.java
index 76d691b..e940ca5 100755
--- a/modules/remoting/src/flex/messaging/services/RemotingService.java
+++ b/modules/remoting/src/flex/messaging/services/RemotingService.java
@@ -128,7 +128,7 @@ public class RemotingService extends AbstractService
     //
     //--------------------------------------------------------------------------
     /**
-     * @exclude
+     *
      */
     public MethodMatcher getMethodMatcher()
     {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/remoting/src/flex/messaging/services/remoting/RemotingDestination.java
----------------------------------------------------------------------
diff --git a/modules/remoting/src/flex/messaging/services/remoting/RemotingDestination.java b/modules/remoting/src/flex/messaging/services/remoting/RemotingDestination.java
index 3742fad..bc9c9c8 100755
--- a/modules/remoting/src/flex/messaging/services/remoting/RemotingDestination.java
+++ b/modules/remoting/src/flex/messaging/services/remoting/RemotingDestination.java
@@ -141,7 +141,7 @@ public class RemotingDestination extends FactoryDestination
     //
     //--------------------------------------------------------------------------
     /**
-     * @exclude
+     *
      */
     public MethodMatcher getMethodMatcher()
     {
@@ -149,7 +149,7 @@ public class RemotingDestination extends FactoryDestination
     }
 
     /**
-     * @exclude
+     *
      */
     public void setMethodMatcher(MethodMatcher matcher)
     {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/remoting/src/flex/messaging/services/remoting/adapters/NoSuchMethodException.java
----------------------------------------------------------------------
diff --git a/modules/remoting/src/flex/messaging/services/remoting/adapters/NoSuchMethodException.java b/modules/remoting/src/flex/messaging/services/remoting/adapters/NoSuchMethodException.java
index d23b1ae..8027a1d 100755
--- a/modules/remoting/src/flex/messaging/services/remoting/adapters/NoSuchMethodException.java
+++ b/modules/remoting/src/flex/messaging/services/remoting/adapters/NoSuchMethodException.java
@@ -19,7 +19,7 @@ package flex.messaging.services.remoting.adapters;
 import flex.messaging.MessageException;
 
 /**
- * @exclude
+ *
  */
 public class NoSuchMethodException extends MessageException
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/remoting/src/flex/messaging/services/remoting/adapters/NoSuchServiceException.java
----------------------------------------------------------------------
diff --git a/modules/remoting/src/flex/messaging/services/remoting/adapters/NoSuchServiceException.java b/modules/remoting/src/flex/messaging/services/remoting/adapters/NoSuchServiceException.java
index 069d36f..07040d6 100755
--- a/modules/remoting/src/flex/messaging/services/remoting/adapters/NoSuchServiceException.java
+++ b/modules/remoting/src/flex/messaging/services/remoting/adapters/NoSuchServiceException.java
@@ -19,7 +19,7 @@ package flex.messaging.services.remoting.adapters;
 import flex.messaging.MessageException;
 
 /**
- * @exclude
+ *
  */
 public class NoSuchServiceException extends MessageException
 {


[2/4] flex-blazeds git commit: Removed all "exclude" javadoc annotations

Posted by cd...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/translator/decoder/StringDecoder.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/translator/decoder/StringDecoder.java b/modules/core/src/flex/messaging/io/amf/translator/decoder/StringDecoder.java
index 1a75641..2b3219b 100644
--- a/modules/core/src/flex/messaging/io/amf/translator/decoder/StringDecoder.java
+++ b/modules/core/src/flex/messaging/io/amf/translator/decoder/StringDecoder.java
@@ -19,7 +19,7 @@ package flex.messaging.io.amf.translator.decoder;
 /**
  * Decode an ActionScript String, Number or Boolean to a Java String.
  *
- * @exclude
+ *
  */
 public class StringDecoder extends ActionScriptDecoder
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/translator/decoder/TypedObjectDecoder.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/translator/decoder/TypedObjectDecoder.java b/modules/core/src/flex/messaging/io/amf/translator/decoder/TypedObjectDecoder.java
index db6b65f..c6d9388 100644
--- a/modules/core/src/flex/messaging/io/amf/translator/decoder/TypedObjectDecoder.java
+++ b/modules/core/src/flex/messaging/io/amf/translator/decoder/TypedObjectDecoder.java
@@ -32,7 +32,7 @@ import flex.messaging.io.amf.translator.TranslationException;
  * If the TranslationContext has been set up to support
  * _remoteClass then this property may be used as a back up.
  *
- * @exclude
+ *
  */
 public class TypedObjectDecoder extends ActionScriptDecoder
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amfx/AmfxMessageSerializer.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amfx/AmfxMessageSerializer.java b/modules/core/src/flex/messaging/io/amfx/AmfxMessageSerializer.java
index fbef268..e30c862 100644
--- a/modules/core/src/flex/messaging/io/amfx/AmfxMessageSerializer.java
+++ b/modules/core/src/flex/messaging/io/amfx/AmfxMessageSerializer.java
@@ -27,7 +27,7 @@ import java.io.OutputStream;
 import java.io.IOException;
 
 /**
- * @exclude
+ *
  */
 public class AmfxMessageSerializer implements MessageSerializer, AmfxTypes
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amfx/AmfxOutput.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amfx/AmfxOutput.java b/modules/core/src/flex/messaging/io/amfx/AmfxOutput.java
index eb7dc33..b416e51 100644
--- a/modules/core/src/flex/messaging/io/amfx/AmfxOutput.java
+++ b/modules/core/src/flex/messaging/io/amfx/AmfxOutput.java
@@ -135,7 +135,7 @@ public class AmfxOutput extends AbstractAmfOutput implements AmfxTypes
                 // Using double to write big numbers such as BigInteger or
                 // BigDecimal can result in information loss so we write
                 // them as String by default...
-                writeString(((Number)o).toString());
+                writeString(o.toString());
             }
             else
             {
@@ -312,7 +312,7 @@ public class AmfxOutput extends AbstractAmfOutput implements AmfxTypes
     //
 
     /**
-     * @exclude
+     *
      */
     protected void writeAMFBoolean(boolean b) throws IOException
     {
@@ -326,7 +326,7 @@ public class AmfxOutput extends AbstractAmfOutput implements AmfxTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeAMFDouble(double d) throws IOException
     {
@@ -343,7 +343,7 @@ public class AmfxOutput extends AbstractAmfOutput implements AmfxTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeAMFInt(int i) throws IOException
     {
@@ -369,7 +369,7 @@ public class AmfxOutput extends AbstractAmfOutput implements AmfxTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeByteArray(byte[] ba) throws IOException
     {
@@ -392,7 +392,7 @@ public class AmfxOutput extends AbstractAmfOutput implements AmfxTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeByteArray(Byte[] ba) throws IOException
     {
@@ -412,7 +412,7 @@ public class AmfxOutput extends AbstractAmfOutput implements AmfxTypes
     }
 
     /**
-     * @exclude
+     *
      */
     public void writeUTF(StringBuffer sb) throws IOException
     {
@@ -421,7 +421,7 @@ public class AmfxOutput extends AbstractAmfOutput implements AmfxTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeDate(Date d) throws IOException
     {
@@ -469,7 +469,7 @@ public class AmfxOutput extends AbstractAmfOutput implements AmfxTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeMapAsECMAArray(Map map) throws IOException
     {
@@ -511,7 +511,7 @@ public class AmfxOutput extends AbstractAmfOutput implements AmfxTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeAMFNull() throws IOException
     {
@@ -522,7 +522,7 @@ public class AmfxOutput extends AbstractAmfOutput implements AmfxTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeString(String s) throws IOException
     {
@@ -537,7 +537,7 @@ public class AmfxOutput extends AbstractAmfOutput implements AmfxTypes
     //
 
     /**
-     * @exclude
+     *
      */
     protected void writeAMFArray(Object o, Class componentType) throws IOException
     {
@@ -560,7 +560,7 @@ public class AmfxOutput extends AbstractAmfOutput implements AmfxTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeArrayCollection(Collection col, SerializationDescriptor desc) throws IOException
     {
@@ -589,7 +589,7 @@ public class AmfxOutput extends AbstractAmfOutput implements AmfxTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeCustomObject(Object o) throws IOException
     {
@@ -641,7 +641,7 @@ public class AmfxOutput extends AbstractAmfOutput implements AmfxTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writePropertyProxy(PropertyProxy pp, Object instance) throws IOException
     {
@@ -709,7 +709,7 @@ public class AmfxOutput extends AbstractAmfOutput implements AmfxTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeString(String s, boolean isTrait) throws IOException
     {
@@ -751,7 +751,7 @@ public class AmfxOutput extends AbstractAmfOutput implements AmfxTypes
      *
      * @param sb The StringBuffer to which the escaped String should be written.
      * @param s The source String to escape for XML.
-     * @exclude
+     *
      */
     protected void writeEscapedString(StringBuffer sb, String s)
     {
@@ -794,7 +794,7 @@ public class AmfxOutput extends AbstractAmfOutput implements AmfxTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeCharArrayAsString(Character[] ca) throws IOException
     {
@@ -813,7 +813,7 @@ public class AmfxOutput extends AbstractAmfOutput implements AmfxTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeCharArrayAsString(char[] ca) throws IOException
     {
@@ -822,7 +822,7 @@ public class AmfxOutput extends AbstractAmfOutput implements AmfxTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeCollection(Collection c, SerializationDescriptor descriptor) throws IOException
     {
@@ -833,7 +833,7 @@ public class AmfxOutput extends AbstractAmfOutput implements AmfxTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeObjectArray(Object[] values, SerializationDescriptor descriptor) throws IOException
     {
@@ -844,7 +844,7 @@ public class AmfxOutput extends AbstractAmfOutput implements AmfxTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeObjectArrayDirectly(Object[] values, SerializationDescriptor descriptor) throws IOException
     {
@@ -882,7 +882,7 @@ public class AmfxOutput extends AbstractAmfOutput implements AmfxTypes
      * </p>
      *
      * @param obj An array of primitives
-     * @exclude
+     *
      */
     protected void writePrimitiveArray(Object obj) throws IOException
     {
@@ -966,7 +966,7 @@ public class AmfxOutput extends AbstractAmfOutput implements AmfxTypes
      *
      * @return Success/failure indicator as to whether the object could be
      *         serialized as a reference.
-     * @exclude
+     *
      */
     protected boolean byReference(Object o) throws IOException
     {
@@ -1004,7 +1004,7 @@ public class AmfxOutput extends AbstractAmfOutput implements AmfxTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected boolean byReference(String s) throws IOException
     {
@@ -1042,7 +1042,7 @@ public class AmfxOutput extends AbstractAmfOutput implements AmfxTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected boolean byReference(TraitsInfo ti) throws IOException
     {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/log/ServletLogTarget.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/log/ServletLogTarget.java b/modules/core/src/flex/messaging/log/ServletLogTarget.java
index 0135e14..ca867b9 100644
--- a/modules/core/src/flex/messaging/log/ServletLogTarget.java
+++ b/modules/core/src/flex/messaging/log/ServletLogTarget.java
@@ -30,7 +30,7 @@ public class ServletLogTarget extends LineFormattedTarget
      * This method must be called during startup to give this target a reference
      * to the ServletContext.
      * @param ctx the servlet context
-     * @exclude
+     *
      */
     public static void setServletContext(ServletContext ctx)
     {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/messages/AbstractMessage.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/messages/AbstractMessage.java b/modules/core/src/flex/messaging/messages/AbstractMessage.java
index 9bf7459..a9f43db 100644
--- a/modules/core/src/flex/messaging/messages/AbstractMessage.java
+++ b/modules/core/src/flex/messaging/messages/AbstractMessage.java
@@ -300,7 +300,7 @@ public abstract class AbstractMessage implements Message, Cloneable
     }
 
     /**
-     * @exclude
+     *
      * 
      * While this class itself does not implement java.io.Externalizable,
      * SmallMessage implementations will typically use Externalizable to
@@ -375,7 +375,7 @@ public abstract class AbstractMessage implements Message, Cloneable
     }
 
     /**
-     * @exclude
+     *
      * 
      * While this class itself does not implement java.io.Externalizable,
      * SmallMessage implementations will typically use Externalizable to
@@ -643,7 +643,7 @@ public abstract class AbstractMessage implements Message, Cloneable
     }
 
     /**
-     * @exclude
+     *
      * Used by the readExtenral method to read the body.
      *  
      * @param input Object input.
@@ -656,7 +656,7 @@ public abstract class AbstractMessage implements Message, Cloneable
     }
 
     /**
-     * @exclude
+     *
      * To support efficient serialization for SmallMessage implementations,
      * this utility method reads in the property flags from an ObjectInput
      * stream. Flags are read in one byte at a time. Flags make use of
@@ -683,10 +683,7 @@ public abstract class AbstractMessage implements Message, Cloneable
 
             flagsArray[i] = flags;
 
-            if ((flags & HAS_NEXT_FLAG) != 0)
-                hasNextFlag = true;
-            else
-                hasNextFlag = false;
+            hasNextFlag = (flags & HAS_NEXT_FLAG) != 0;
 
             i++;
         }
@@ -695,7 +692,7 @@ public abstract class AbstractMessage implements Message, Cloneable
     }
 
     /**
-     * @exclude
+     *
      * Used by writeExternal method to write the body.
      * 
      * @param output The object output.

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/messages/AcknowledgeMessage.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/messages/AcknowledgeMessage.java b/modules/core/src/flex/messaging/messages/AcknowledgeMessage.java
index 9e8d75c..0466ae5 100644
--- a/modules/core/src/flex/messaging/messages/AcknowledgeMessage.java
+++ b/modules/core/src/flex/messaging/messages/AcknowledgeMessage.java
@@ -23,7 +23,7 @@ import java.io.ObjectOutput;
 import flex.messaging.util.UUIDUtils;
 
 /**
- * @exclude
+ *
  * This is the type of message returned by the MessageBroker
  * to endpoints after the broker has routed an endpoint's message
  * to a service.
@@ -47,7 +47,7 @@ public class AcknowledgeMessage extends AsyncMessage
     }
 
     /**
-     * @exclude
+     *
      */
     public void readExternal(ObjectInput input) throws IOException, ClassNotFoundException
     {
@@ -75,7 +75,7 @@ public class AcknowledgeMessage extends AsyncMessage
     }
 
     /**
-     * @exclude
+     *
      */
     public Message getSmallMessage()
     {
@@ -85,7 +85,7 @@ public class AcknowledgeMessage extends AsyncMessage
     }
 
     /**
-     * @exclude
+     *
      */
     public void writeExternal(ObjectOutput output) throws IOException
     {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/messages/AcknowledgeMessageExt.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/messages/AcknowledgeMessageExt.java b/modules/core/src/flex/messaging/messages/AcknowledgeMessageExt.java
index f11c00b..9c6e40a 100644
--- a/modules/core/src/flex/messaging/messages/AcknowledgeMessageExt.java
+++ b/modules/core/src/flex/messaging/messages/AcknowledgeMessageExt.java
@@ -23,7 +23,7 @@ import java.io.ObjectOutput;
 import flex.messaging.io.ClassAlias;
 
 /**
- * @exclude
+ *
  */
 public class AcknowledgeMessageExt extends AcknowledgeMessage implements
         Externalizable, ClassAlias

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/messages/AsyncMessage.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/messages/AsyncMessage.java b/modules/core/src/flex/messaging/messages/AsyncMessage.java
index 70eaaea..efb4b9a 100644
--- a/modules/core/src/flex/messaging/messages/AsyncMessage.java
+++ b/modules/core/src/flex/messaging/messages/AsyncMessage.java
@@ -78,7 +78,7 @@ public class AsyncMessage extends AbstractMessage implements SmallMessage
     }
 
     /**
-     * @exclude
+     *
      */
     public Message getSmallMessage()
     {
@@ -86,7 +86,7 @@ public class AsyncMessage extends AbstractMessage implements SmallMessage
     }
 
     /**
-     * @exclude
+     *
      */
     @Override public void readExternal(ObjectInput input)throws IOException, ClassNotFoundException
     {
@@ -126,7 +126,7 @@ public class AsyncMessage extends AbstractMessage implements SmallMessage
     }
 
     /**
-     * @exclude
+     *
      */
     @Override public void writeExternal(ObjectOutput output) throws IOException
     {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/messages/AsyncMessageExt.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/messages/AsyncMessageExt.java b/modules/core/src/flex/messaging/messages/AsyncMessageExt.java
index 81f16eb..1c79363 100644
--- a/modules/core/src/flex/messaging/messages/AsyncMessageExt.java
+++ b/modules/core/src/flex/messaging/messages/AsyncMessageExt.java
@@ -23,7 +23,7 @@ import java.io.ObjectOutput;
 import flex.messaging.io.ClassAlias;
 
 /**
- * @exclude
+ *
  */
 public class AsyncMessageExt extends AsyncMessage implements Externalizable, ClassAlias
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/messages/BatchableMessage.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/messages/BatchableMessage.java b/modules/core/src/flex/messaging/messages/BatchableMessage.java
index 2e7b8bb..df11fb5 100644
--- a/modules/core/src/flex/messaging/messages/BatchableMessage.java
+++ b/modules/core/src/flex/messaging/messages/BatchableMessage.java
@@ -19,7 +19,7 @@ package flex.messaging.messages;
 /**
  * Implemented by messages that may be batched.
  *
- * @exclude
+ *
  */
 public interface BatchableMessage
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/messages/CommandMessage.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/messages/CommandMessage.java b/modules/core/src/flex/messaging/messages/CommandMessage.java
index a0f816e..7e2ca85 100644
--- a/modules/core/src/flex/messaging/messages/CommandMessage.java
+++ b/modules/core/src/flex/messaging/messages/CommandMessage.java
@@ -171,7 +171,7 @@ public class CommandMessage extends AsyncMessage
     public static final String NO_OP_POLL_HEADER = "DSNoOpPoll";
 
     /**
-     * @exclude
+     *
      * Internal header used to tag poll messages when a poll-wait must be suppressed.
      */
     public static final String SUPPRESS_POLL_WAIT_HEADER = "DSSuppressPollWait";
@@ -204,7 +204,7 @@ public class CommandMessage extends AsyncMessage
     public static final String PUSH_REGISTRATION_INFORMATION = "DSPushRegisteredInformation";
 
     /**
-     * @exclude
+     *
      * The position of the operation flag within all flags.
      * Constant used during serialization.
      */
@@ -278,7 +278,7 @@ public class CommandMessage extends AsyncMessage
     }
 
     /**
-     * @exclude
+     *
      */
     public Message getSmallMessage()
     {
@@ -294,7 +294,7 @@ public class CommandMessage extends AsyncMessage
     }
 
     /**
-     * @exclude
+     *
      * Debugging function which returns the name of the operation for
      * a given operation code.
      */
@@ -306,7 +306,7 @@ public class CommandMessage extends AsyncMessage
     }
 
     /**
-     * @exclude
+     *
      */
     public void readExternal(ObjectInput input)throws IOException, ClassNotFoundException
     {
@@ -342,7 +342,7 @@ public class CommandMessage extends AsyncMessage
     }
 
     /**
-     * @exclude
+     *
      * Utility method to pretty print a <code>CommandMessage</code>.
      *
      * @param indentLevel This method may be invoked recursively so this argument
@@ -371,7 +371,7 @@ public class CommandMessage extends AsyncMessage
     }
 
     /**
-     * @exclude
+     *
      */
     public void writeExternal(ObjectOutput output) throws IOException
     {
@@ -389,7 +389,7 @@ public class CommandMessage extends AsyncMessage
     }
 
     /**
-     * @exclude
+     *
      * Utility method to build the log category to use for logging <code>CommandMessage</code>s.
      */
     public String logCategory()

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/messages/CommandMessageExt.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/messages/CommandMessageExt.java b/modules/core/src/flex/messaging/messages/CommandMessageExt.java
index 450a91d..4507a89 100644
--- a/modules/core/src/flex/messaging/messages/CommandMessageExt.java
+++ b/modules/core/src/flex/messaging/messages/CommandMessageExt.java
@@ -23,7 +23,7 @@ import java.io.ObjectOutput;
 import flex.messaging.io.ClassAlias;
 
 /**
- * @exclude
+ *
  */
 public class CommandMessageExt extends CommandMessage implements Externalizable, ClassAlias
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/messages/ErrorMessage.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/messages/ErrorMessage.java b/modules/core/src/flex/messaging/messages/ErrorMessage.java
index a4f03bf..326dcce 100644
--- a/modules/core/src/flex/messaging/messages/ErrorMessage.java
+++ b/modules/core/src/flex/messaging/messages/ErrorMessage.java
@@ -24,7 +24,7 @@ import java.util.Map;
 /**
  * A message describing a MessageException.
  *
- * @exclude
+ *
  */
 public class ErrorMessage extends AcknowledgeMessage
 {
@@ -62,7 +62,7 @@ public class ErrorMessage extends AcknowledgeMessage
     }
 
     /**
-     * @exclude
+     *
      */
     public Message getSmallMessage()
     {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/messages/HTTPMessage.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/messages/HTTPMessage.java b/modules/core/src/flex/messaging/messages/HTTPMessage.java
index 396b3ac..9ee65d7 100644
--- a/modules/core/src/flex/messaging/messages/HTTPMessage.java
+++ b/modules/core/src/flex/messaging/messages/HTTPMessage.java
@@ -32,7 +32,7 @@ import java.util.Map;
  * HEAD etc.
  * </p>
  *
- * @exclude
+ *
  */
 public class HTTPMessage extends RPCMessage
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/messages/Message.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/messages/Message.java b/modules/core/src/flex/messaging/messages/Message.java
index e0deb2b..85c4397 100644
--- a/modules/core/src/flex/messaging/messages/Message.java
+++ b/modules/core/src/flex/messaging/messages/Message.java
@@ -47,7 +47,7 @@ public interface Message
     String ENDPOINT_HEADER = "DSEndpoint";
 
     /**
-     * @exclude
+     *
      * Used internally to enable/disable validation of the channel endpoint that a
      * message for a destination arrived over.
      */

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/messages/MessagePerformanceInfo.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/messages/MessagePerformanceInfo.java b/modules/core/src/flex/messaging/messages/MessagePerformanceInfo.java
index f9b9b00..e61545e 100644
--- a/modules/core/src/flex/messaging/messages/MessagePerformanceInfo.java
+++ b/modules/core/src/flex/messaging/messages/MessagePerformanceInfo.java
@@ -19,7 +19,7 @@ package flex.messaging.messages;
 import java.io.Serializable;
 
 /**
- * @exclude
+ *
  *
  * The MessagePerformanceInfo class is used to capture various metrics about
  * the sizing and timing of a message sent from a client to the server and its
@@ -39,14 +39,14 @@ public class MessagePerformanceInfo implements Serializable, Cloneable
     private static final long serialVersionUID = -8556484221291213962L;
 
     /**
-     * @exclude
+     *
      *
       * Size of message in Bytes (message types depends on what header this MPI is in)
       */
     public long messageSize;
 
     /**
-     * @exclude
+     *
      *
       * Millisecond timestamp of when this message was sent
       * (origin depends on on what header this MPI is in)
@@ -54,7 +54,7 @@ public class MessagePerformanceInfo implements Serializable, Cloneable
     public long sendTime;
 
     /**
-     * @exclude
+     *
      *
       * Millisecond timestamp of when this message was received
       * (destination depends on on what header this MPI is in)
@@ -62,7 +62,7 @@ public class MessagePerformanceInfo implements Serializable, Cloneable
     public long receiveTime;
 
     /**
-     * @exclude
+     *
      *
       * Amount of time in milliseconds that this message was being processed on the server
       * in order to calculate and populate MPI metrics
@@ -70,35 +70,35 @@ public class MessagePerformanceInfo implements Serializable, Cloneable
     public long overheadTime;
 
     /**
-     * @exclude
+     *
      *
       * "OUT" when this message originated on the server
       */
     public String infoType;
 
     /**
-     * @exclude
+     *
      *
       * True if this is info for a message that was pushed from server to client
       */
     public boolean pushedFlag;
 
     /**
-     * @exclude
+     *
      *
      * Flag is true when record-message-sizes is enabled for the communication channel
       */
     public boolean recordMessageSizes;
 
     /**
-     * @exclude
+     *
      *
      * Flag is true when record-message-times is enabled for the communication channel
       */
     public boolean recordMessageTimes;
 
     /**
-     * @exclude
+     *
      *
      * Millisecond timestamp of when the server became ready to push this message out
      * to clients
@@ -106,7 +106,7 @@ public class MessagePerformanceInfo implements Serializable, Cloneable
     public long serverPrePushTime;
 
     /**
-     * @exclude
+     *
      *
      * Millisecond timestamp of when the server called into the adapter associated with the
      * destination of this message
@@ -114,7 +114,7 @@ public class MessagePerformanceInfo implements Serializable, Cloneable
     public long serverPreAdapterTime;
 
     /**
-     * @exclude
+     *
      *
      * Millisecond timestamp of when server processing returned from the adapater associated
      * with the destination of this message
@@ -122,7 +122,7 @@ public class MessagePerformanceInfo implements Serializable, Cloneable
     public long serverPostAdapterTime;
 
     /**
-     * @exclude
+     *
      *
      * Millisecond timestamp of when the adapter associated with the destination of this message
      * made a call to an external component (for example a JMS server)
@@ -130,7 +130,7 @@ public class MessagePerformanceInfo implements Serializable, Cloneable
     public long serverPreAdapterExternalTime;
 
     /**
-     * @exclude
+     *
      *
      * Millisecond timestamp of when processing came back to the adapter associated with the destination
      * of this message from a call to an external component (for example a JMS server)
@@ -138,7 +138,7 @@ public class MessagePerformanceInfo implements Serializable, Cloneable
     public long serverPostAdapterExternalTime;
 
     /**
-     * @exclude
+     *
      *
       * Copies the immutable fields of this MPI isntance over to create a new one
       * @return cloned instance of this MessagePerformanceInfo instance
@@ -171,7 +171,7 @@ public class MessagePerformanceInfo implements Serializable, Cloneable
     }
 
     /**
-     * @exclude
+     *
      *
       * Increase the overhead counter for this MPI
       * @param overhead Increment size in milliseconds
@@ -182,7 +182,7 @@ public class MessagePerformanceInfo implements Serializable, Cloneable
     }
 
     /**
-     * @exclude
+     *
      *
      * Default constructor
       */

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/messages/MessagePerformanceUtils.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/messages/MessagePerformanceUtils.java b/modules/core/src/flex/messaging/messages/MessagePerformanceUtils.java
index e8a412a..bc7421d 100644
--- a/modules/core/src/flex/messaging/messages/MessagePerformanceUtils.java
+++ b/modules/core/src/flex/messaging/messages/MessagePerformanceUtils.java
@@ -23,7 +23,7 @@ import flex.messaging.log.Log;
 import flex.messaging.log.LogCategories;
 
 /**
- * @exclude
+ *
  *
  * Utility class for populating  MessagePerformanceInformation objects at various stages of
  * server processing.  A given message may have three MPI headers populated (naming convention
@@ -48,7 +48,7 @@ public class MessagePerformanceUtils
     public static int MPI_TIMING_AND_SIZING = 2;
 
     /**
-     * @exclude
+     *
      *
      * Clones the MPI object for the incoming message from client to server
      * from the batch wrapper to all messages included in it, keeping track of
@@ -80,7 +80,7 @@ public class MessagePerformanceUtils
    }
 
     /**
-     * @exclude
+     *
      *
      * This method finalizes the incoming MPI instance.  It is necessary because the client
      * send time is stored on the incoming MPII and the server receive time as well as message
@@ -115,7 +115,7 @@ public class MessagePerformanceUtils
     }
 
     /**
-     * @exclude
+     *
      *
      * This method sets up the outgoing MPI object for a response/acknowledgement message.
      * The outgoing message should also have a copy of the incoming MPI so that when the client
@@ -198,7 +198,7 @@ public class MessagePerformanceUtils
     }
 
     /**
-     * @exclude
+     *
      *
      * Convenience method for setting the incoming MPI object on a message.
      *
@@ -211,7 +211,7 @@ public class MessagePerformanceUtils
     }
 
     /**
-     * @exclude
+     *
      * The server generated messages do not have MPII object (which is normally set 
      * by the client) which prevents the usual performance gathering. This convenience method
      * can be invoked to set the MPII object (as if it's generated by the client) once the 
@@ -231,7 +231,7 @@ public class MessagePerformanceUtils
     }
 
     /**
-     * @exclude
+     *
      *
      * Convenience method for setting the outgoing MPI object on a message.
      *
@@ -244,7 +244,7 @@ public class MessagePerformanceUtils
     }
 
     /**
-     * @exclude
+     *
      *
      * Convenience method for setting the pushed MPI object on a message.
      *
@@ -258,7 +258,7 @@ public class MessagePerformanceUtils
     }
 
     /**
-     * @exclude
+     *
      *
      * Convenience method for retrieving the incoming MPI object from a message.
      *
@@ -271,7 +271,7 @@ public class MessagePerformanceUtils
     }
 
     /**
-     * @exclude
+     *
      *
      * Convenience method for retrieving the outgoing MPI object from a message.
      *
@@ -284,7 +284,7 @@ public class MessagePerformanceUtils
     }
 
     /**
-     * @exclude
+     *
      *
      * Convenience method for retrieving the pushed MPI object from a message.
      *
@@ -298,7 +298,7 @@ public class MessagePerformanceUtils
     }
 
     /**
-     * @exclude
+     *
      *
      * Convenience method for setting server pre-push processing time on a message.
      * No-op if record-message-times is false
@@ -317,7 +317,7 @@ public class MessagePerformanceUtils
     }
 
     /**
-     * @exclude
+     *
      *
      * Convenience method for setting server pre-adapter timestamp on a message.
      * No-op if record-message-times is false
@@ -342,7 +342,7 @@ public class MessagePerformanceUtils
     }
 
     /**
-     * @exclude
+     *
      *
      * Convenience method for setting server post-adapter timestamp on a message.
      * No-op if record-message-times is false

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/messages/RPCMessage.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/messages/RPCMessage.java b/modules/core/src/flex/messaging/messages/RPCMessage.java
index bd38971..2f7711a 100644
--- a/modules/core/src/flex/messaging/messages/RPCMessage.java
+++ b/modules/core/src/flex/messaging/messages/RPCMessage.java
@@ -23,7 +23,7 @@ import flex.messaging.log.Log;
  * Base class for RPC request-styled messages, such as RemotingMessage,
  * HTTPMessage and SOAPMessage.
  *
- * @exclude
+ *
  */
 public abstract class RPCMessage extends AbstractMessage
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/messages/RemotingMessage.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/messages/RemotingMessage.java b/modules/core/src/flex/messaging/messages/RemotingMessage.java
index 77056be..567f8f6 100644
--- a/modules/core/src/flex/messaging/messages/RemotingMessage.java
+++ b/modules/core/src/flex/messaging/messages/RemotingMessage.java
@@ -28,7 +28,7 @@ import java.util.List;
  * no HTTP, and therefore cannot support the request/response and
  * session properties of the ActionContext).
  *
- * @exclude 
+ *
  */
 public class RemotingMessage extends RPCMessage
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/messages/SOAPMessage.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/messages/SOAPMessage.java b/modules/core/src/flex/messaging/messages/SOAPMessage.java
index abf8b75..a291ab2 100644
--- a/modules/core/src/flex/messaging/messages/SOAPMessage.java
+++ b/modules/core/src/flex/messaging/messages/SOAPMessage.java
@@ -23,7 +23,7 @@ import flex.messaging.io.MessageIOConstants;
  * assume the content-type as &quot;text/xml; charset=utf-8&quot;
  * and the HTTP method will be POST.
  *
- * @exclude
+ *
  */
 public class SOAPMessage extends HTTPMessage
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/messages/SmallMessage.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/messages/SmallMessage.java b/modules/core/src/flex/messaging/messages/SmallMessage.java
index 75d4970..d757160 100644
--- a/modules/core/src/flex/messaging/messages/SmallMessage.java
+++ b/modules/core/src/flex/messaging/messages/SmallMessage.java
@@ -20,7 +20,7 @@ package flex.messaging.messages;
 /**
  * A marker interface that is used to indicate that a Message has an
  * alternative smaller form for serialization.
- * @exclude
+ *
  */
 public interface SmallMessage extends Message
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/security/AppServerLoginCommand.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/security/AppServerLoginCommand.java b/modules/core/src/flex/messaging/security/AppServerLoginCommand.java
index 940f744..864623a 100644
--- a/modules/core/src/flex/messaging/security/AppServerLoginCommand.java
+++ b/modules/core/src/flex/messaging/security/AppServerLoginCommand.java
@@ -30,7 +30,7 @@ import flex.messaging.io.MessageIOConstants;
  * This class implements LoginCommand and doAuthorization in way that should work by default if
  * authorization logged a user into the J2EE application server.  doAuthorization uses isUserInRole.
  *
- * @exclude
+ *
  */
 public abstract class AppServerLoginCommand implements LoginCommand
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/security/LoginManager.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/security/LoginManager.java b/modules/core/src/flex/messaging/security/LoginManager.java
index 7c8ccc5..1f42ab6 100644
--- a/modules/core/src/flex/messaging/security/LoginManager.java
+++ b/modules/core/src/flex/messaging/security/LoginManager.java
@@ -40,7 +40,7 @@ import flex.messaging.log.LogCategories;
  * each server.
  * </p>
  *
- * @exclude
+ *
  */
 public class LoginManager implements FlexComponent
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/security/SecurityException.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/security/SecurityException.java b/modules/core/src/flex/messaging/security/SecurityException.java
index ba7fbc5..ed511cc 100644
--- a/modules/core/src/flex/messaging/security/SecurityException.java
+++ b/modules/core/src/flex/messaging/security/SecurityException.java
@@ -57,7 +57,7 @@ public class SecurityException extends MessageException
      * Create a SecurityException that will use the specified ResourceLoader
      * for error codes.
      * 
-     * @exclude
+     *
      */
     public SecurityException(ResourceLoader resourceLoader)
     {
@@ -75,7 +75,7 @@ public class SecurityException extends MessageException
     //----------------------------------            
 
     /**
-     * @exclude
+     *
      * Returns the default initial text for the log output generated by <code>logAtHingePoint()</code>.
      */
     public String getDefaultLogMessageIntro()
@@ -88,7 +88,7 @@ public class SecurityException extends MessageException
     //----------------------------------            
     
     /**
-     * @exclude
+     *
      * Override to disable stack trace logging. Security exceptions are generally innocuous (invalid credentials/role membership)
      * and stack traces make these faults scarier than necessary.
      */
@@ -102,7 +102,7 @@ public class SecurityException extends MessageException
     //----------------------------------            
     
     /**
-     * @exclude
+     *
      * Returns the preferred log level for this exception instance.
      */
     public short getPreferredLogLevel()

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/services/AbstractService.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/services/AbstractService.java b/modules/core/src/flex/messaging/services/AbstractService.java
index 4b9f341..7d7d1ee 100644
--- a/modules/core/src/flex/messaging/services/AbstractService.java
+++ b/modules/core/src/flex/messaging/services/AbstractService.java
@@ -577,7 +577,7 @@ public abstract class AbstractService extends ManageableComponent implements Ser
     }
 
     /**
-     * @exclude
+     *
      * Returns a <tt>ConfigMap</tt> of service properties that the client needs.
      * The <tt>allDestinations</tt> flag controls whether configuration for all 
      * destinations or only reliable client destinations is returned. 

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/services/AuthenticationService.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/services/AuthenticationService.java b/modules/core/src/flex/messaging/services/AuthenticationService.java
index 1ed3824..345e0c1 100644
--- a/modules/core/src/flex/messaging/services/AuthenticationService.java
+++ b/modules/core/src/flex/messaging/services/AuthenticationService.java
@@ -53,7 +53,7 @@ public class AuthenticationService extends AbstractService
     public static final String ID = "authentication-service";
 
     /**
-     * @exclude
+     *
      */
     public AuthenticationService()
     {
@@ -61,7 +61,7 @@ public class AuthenticationService extends AbstractService
     }
     
     /**
-     * @exclude
+     *
      */
     public AuthenticationService(boolean enableManagement)
     {
@@ -97,7 +97,7 @@ public class AuthenticationService extends AbstractService
     
     // This service's id should never be changed
     /**
-     * @exclude
+     *
      */
     public void setId(String id)
     {
@@ -106,7 +106,7 @@ public class AuthenticationService extends AbstractService
 
     // This service should not be visible to the client
     /**
-     * @exclude
+     *
      */
     public ConfigMap describeService(Endpoint endpoint)
     { 
@@ -114,7 +114,7 @@ public class AuthenticationService extends AbstractService
     }
     
     /**
-     * @exclude
+     *
      */
     public Object serviceMessage(Message message)
     {
@@ -122,7 +122,7 @@ public class AuthenticationService extends AbstractService
     }
 
     /**
-     * @exclude
+     *
      */
     public Object serviceCommand(CommandMessage msg)
     {
@@ -165,7 +165,7 @@ public class AuthenticationService extends AbstractService
     }
     
     /**
-     * @exclude
+     *
      */
     @Override
     public void stop()
@@ -175,7 +175,7 @@ public class AuthenticationService extends AbstractService
     }
 
     /**
-     * @exclude
+     *
      */
     public void decodeAndLogin(String encoded, LoginManager lm)
     {
@@ -183,7 +183,7 @@ public class AuthenticationService extends AbstractService
     }
 
     /**
-     * @exclude
+     *
      */
     private void decodeAndLoginWithCharset(String encoded, LoginManager lm, String charset)
     {
@@ -245,7 +245,7 @@ public class AuthenticationService extends AbstractService
     }
     
     /**
-     * @exclude
+     *
      */
     protected void setupServiceControl(MessageBroker broker)
     {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/services/MessageService.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/services/MessageService.java b/modules/core/src/flex/messaging/services/MessageService.java
index 4ea8ff1..d1a2b57 100644
--- a/modules/core/src/flex/messaging/services/MessageService.java
+++ b/modules/core/src/flex/messaging/services/MessageService.java
@@ -221,7 +221,7 @@ public class MessageService extends AbstractService implements MessagingConstant
     }
 
     /**
-     * @exclude
+     *
      */
 
     public Object serviceMessage(Message message, boolean throttle)
@@ -230,7 +230,7 @@ public class MessageService extends AbstractService implements MessagingConstant
     }
 
     /**
-     * @exclude
+     *
      */
     public Object serviceMessage(Message message, boolean throttle, MessageDestination dest)
     {
@@ -324,7 +324,7 @@ public class MessageService extends AbstractService implements MessagingConstant
     }
 
     /**
-     * @exclude
+     *
      */
     @Override
     public Object serviceCommand(CommandMessage message)
@@ -443,7 +443,7 @@ public class MessageService extends AbstractService implements MessagingConstant
     }
 
     /**
-     * @exclude
+     *
      * This method is provided for a cluster peer broadcast from a single remote node.  Because the
      * cluster handling code adds the remote server's address as a paramter when you call invokePeerToPeerOperation
      * we need a new variant of this method which takes the remote node's address.
@@ -454,7 +454,7 @@ public class MessageService extends AbstractService implements MessagingConstant
     }
 
     /**
-     * @exclude
+     *
      * This method is provided for a cluster peer broadcast, it is not intended to be
      * invoked locally.
      */
@@ -571,7 +571,7 @@ public class MessageService extends AbstractService implements MessagingConstant
     }
 
     /**
-     * @exclude
+     *
      * This method is used by messaging adapters to send a message to a specific
      * set of clients that are directly connected to this server.  It does not
      * propagate the message to other servers in the cluster.
@@ -712,7 +712,7 @@ public class MessageService extends AbstractService implements MessagingConstant
      * This method is provided for a clustered messaging with the routing-mode set to point-to-point.
      * On startup, a server invokes this method for each server to request its local subscription state.
      *
-     * @exclude
+     *
      */
     public void requestSubscriptions(String destinationId, Object remoteAddress)
     {
@@ -726,7 +726,7 @@ public class MessageService extends AbstractService implements MessagingConstant
      * subscription state and sends it back to the requesting server by calling its
      * receiveSubscriptions method.
      *
-     * @exclude
+     *
      */
     public void sendSubscriptions(String destinationId, Object remoteAddress)
     {
@@ -785,7 +785,7 @@ public class MessageService extends AbstractService implements MessagingConstant
      * This method is provided for a cluster peer broadcast, it is not invoked locally.  It is used
      * by remote clients to send their subscription table to this server.
      *
-     * @exclude
+     *
      */
     public void receiveSubscriptions(String destinationId, Object subscriptions, Object senderAddress)
     {
@@ -797,7 +797,7 @@ public class MessageService extends AbstractService implements MessagingConstant
     }
 
     /**
-     * @exclude
+     *
      * Called when we need to push a local subscribe/unsubscribe to all of the remote
      * servers.
      */
@@ -1167,7 +1167,7 @@ public class MessageService extends AbstractService implements MessagingConstant
     }
 
     /**
-     * @exclude
+     *
      * Tests a selector in an attempt to avoid runtime errors that we could catch at startup.
      *
      * @param selectorExpression The expression to test.
@@ -1224,7 +1224,7 @@ public class MessageService extends AbstractService implements MessagingConstant
     }
     
     /**
-     * @exclude
+     *
      * 
      * This is override the method stop().
      * It is needed to provide locking of MessageService.subcribeLock first

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/services/ServiceException.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/services/ServiceException.java b/modules/core/src/flex/messaging/services/ServiceException.java
index 40194c3..e4c3327 100644
--- a/modules/core/src/flex/messaging/services/ServiceException.java
+++ b/modules/core/src/flex/messaging/services/ServiceException.java
@@ -22,7 +22,7 @@ import flex.messaging.log.LogEvent;
 /**
  * Exception type for Service errors.
  *
- * @exclude
+ *
  */
 public class ServiceException extends MessageException
 {
@@ -59,10 +59,7 @@ public class ServiceException extends MessageException
      */
     public boolean isLogStackTraceEnabled()
     {
-        if (code != null && code.equals(MessageService.NOT_SUBSCRIBED_CODE))
-            return false;
-        else
-            return true;
+        return !(code != null && code.equals(MessageService.NOT_SUBSCRIBED_CODE));
     }    
     
     //----------------------------------

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/services/messaging/MessagingConstants.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/services/messaging/MessagingConstants.java b/modules/core/src/flex/messaging/services/messaging/MessagingConstants.java
index be755bd..a525855 100644
--- a/modules/core/src/flex/messaging/services/messaging/MessagingConstants.java
+++ b/modules/core/src/flex/messaging/services/messaging/MessagingConstants.java
@@ -17,7 +17,7 @@
 package flex.messaging.services.messaging;
 
 /**
- * @exclude
+ *
  */
 public interface MessagingConstants
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/services/messaging/RemoteMessageClient.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/services/messaging/RemoteMessageClient.java b/modules/core/src/flex/messaging/services/messaging/RemoteMessageClient.java
index 810d784..fe6fd2f 100644
--- a/modules/core/src/flex/messaging/services/messaging/RemoteMessageClient.java
+++ b/modules/core/src/flex/messaging/services/messaging/RemoteMessageClient.java
@@ -22,12 +22,12 @@ import flex.messaging.MessageDestination;
 import java.util.Iterator;
 
 /**
- * @exclude
+ *
  */
 public class RemoteMessageClient extends MessageClient
 {
     /**
-     * @exclude
+     *
      */
     private static final long serialVersionUID = -4743740983792418491L;
 

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/services/messaging/RemoteSubscriptionManager.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/services/messaging/RemoteSubscriptionManager.java b/modules/core/src/flex/messaging/services/messaging/RemoteSubscriptionManager.java
index b4da14d..c1a3096 100644
--- a/modules/core/src/flex/messaging/services/messaging/RemoteSubscriptionManager.java
+++ b/modules/core/src/flex/messaging/services/messaging/RemoteSubscriptionManager.java
@@ -32,7 +32,7 @@ import java.util.List;
  * Using a separate instance of this class keeps the subscriptions
  * of local clients separate from remote clients.
  *
- * @exclude
+ *
  */
 public class RemoteSubscriptionManager extends SubscriptionManager implements RemoveNodeListener
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/services/messaging/SubscriptionManager.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/services/messaging/SubscriptionManager.java b/modules/core/src/flex/messaging/services/messaging/SubscriptionManager.java
index 5df85ab..9e53cf1 100644
--- a/modules/core/src/flex/messaging/services/messaging/SubscriptionManager.java
+++ b/modules/core/src/flex/messaging/services/messaging/SubscriptionManager.java
@@ -45,7 +45,7 @@ import java.util.concurrent.ConcurrentHashMap;
 import java.util.concurrent.ThreadFactory;
 
 /**
- * @exclude
+ *
  * The SubscriptionManager monitors subscribed clients for MessageService
  * and its subclasses, such as DataService.
  */

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/services/messaging/Subtopic.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/services/messaging/Subtopic.java b/modules/core/src/flex/messaging/services/messaging/Subtopic.java
index 555495f..ba641b0 100644
--- a/modules/core/src/flex/messaging/services/messaging/Subtopic.java
+++ b/modules/core/src/flex/messaging/services/messaging/Subtopic.java
@@ -37,7 +37,7 @@ public class Subtopic
     /**
      * Constructor.
      *
-     * @exclude
+     *
      *
      * @param subtopic The full subtopic string.
      * @param separator The separator for tokenizing a hierarchical subtopic.
@@ -178,15 +178,8 @@ public class Subtopic
         if (!(other instanceof Subtopic))
             return false;
         Subtopic otherSubtopic = (Subtopic) other;
-        if (subtopic.equals(otherSubtopic.subtopic) &&
-            ((separator == null && otherSubtopic.separator == null) || (separator != null && separator.equals(otherSubtopic.separator))))
-        {
-            return true;
-        }
-        else
-        {
-            return false;
-        }
+        return subtopic.equals(otherSubtopic.subtopic) &&
+                ((separator == null && otherSubtopic.separator == null) || (separator != null && separator.equals(otherSubtopic.separator)));
     }
 
     /**
@@ -266,10 +259,7 @@ public class Subtopic
             while (n-- > 0)
             {
                 tok1 = t1.nextToken();
-                if (tok1.equals(SUBTOPIC_WILDCARD))
-                    matchToken = false;
-                else
-                    matchToken = true;
+                matchToken = !tok1.equals(SUBTOPIC_WILDCARD);
 
                 if (t2.hasMoreTokens())
                 {
@@ -290,10 +280,7 @@ public class Subtopic
                 return true;
             else if ((difference < 0) && tok1.equals(SUBTOPIC_WILDCARD))
                 return true;
-            else if ((difference > 0) && tok2.equals(SUBTOPIC_WILDCARD))
-                return true;
-            else
-                return false;
+            else return (difference > 0) && tok2.equals(SUBTOPIC_WILDCARD);
         }
     }
 

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/services/messaging/ThrottleManager.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/services/messaging/ThrottleManager.java b/modules/core/src/flex/messaging/services/messaging/ThrottleManager.java
index d1cf801..499c5f0 100644
--- a/modules/core/src/flex/messaging/services/messaging/ThrottleManager.java
+++ b/modules/core/src/flex/messaging/services/messaging/ThrottleManager.java
@@ -31,7 +31,7 @@ import flex.messaging.messages.Message;
 import flex.messaging.services.messaging.ThrottleManager.ThrottleResult.Result;
 
 /**
- * @exclude
+ *
  *
  * The ThrottleManager provides functionality to limit the frequency of messages
  * routed through the system in message/second terms. Message frequency can be managed
@@ -203,7 +203,7 @@ public class ThrottleManager extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      * Used by the MessageClient in its cleanup process.
      *
      * @param clientId The id of the MessageClient.
@@ -478,7 +478,7 @@ public class ThrottleManager extends ManageableComponent
         public enum Result
         {
             OK, IGNORE, ERROR, BUFFER, CONFLATE
-        };
+        }
 
         private String detail;
         private Result result;

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/services/messaging/adapters/AsyncMessageReceiver.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/services/messaging/adapters/AsyncMessageReceiver.java b/modules/core/src/flex/messaging/services/messaging/adapters/AsyncMessageReceiver.java
index 538a52e..fb1c0f4 100644
--- a/modules/core/src/flex/messaging/services/messaging/adapters/AsyncMessageReceiver.java
+++ b/modules/core/src/flex/messaging/services/messaging/adapters/AsyncMessageReceiver.java
@@ -24,7 +24,7 @@ import javax.jms.MessageListener;
 /**
  * A <code>MessageReceiver</code> that receives messages asynchronously from JMS.
  *
- * @exclude
+ *
  */
 class AsyncMessageReceiver implements MessageReceiver, ExceptionListener, MessageListener
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/services/messaging/adapters/JMSConfigConstants.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/services/messaging/adapters/JMSConfigConstants.java b/modules/core/src/flex/messaging/services/messaging/adapters/JMSConfigConstants.java
index 7cc7f00..e792eb6 100644
--- a/modules/core/src/flex/messaging/services/messaging/adapters/JMSConfigConstants.java
+++ b/modules/core/src/flex/messaging/services/messaging/adapters/JMSConfigConstants.java
@@ -19,7 +19,7 @@ package flex.messaging.services.messaging.adapters;
 /**
  * Constants for JMSAdapter and its related classes.
  *
- * @exclude
+ *
  */
 public interface JMSConfigConstants
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/services/messaging/adapters/JMSMessageEvent.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/services/messaging/adapters/JMSMessageEvent.java b/modules/core/src/flex/messaging/services/messaging/adapters/JMSMessageEvent.java
index 0d44750..2d583e7 100644
--- a/modules/core/src/flex/messaging/services/messaging/adapters/JMSMessageEvent.java
+++ b/modules/core/src/flex/messaging/services/messaging/adapters/JMSMessageEvent.java
@@ -24,7 +24,7 @@ import javax.jms.Message;
  * by the source.
  *
  * @see flex.messaging.services.messaging.adapters.JMSMessageListener
- * @exclude
+ *
  */
 public class JMSMessageEvent extends EventObject
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/services/messaging/adapters/JMSProducer.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/services/messaging/adapters/JMSProducer.java b/modules/core/src/flex/messaging/services/messaging/adapters/JMSProducer.java
index c5e12b6..557163c 100644
--- a/modules/core/src/flex/messaging/services/messaging/adapters/JMSProducer.java
+++ b/modules/core/src/flex/messaging/services/messaging/adapters/JMSProducer.java
@@ -33,7 +33,7 @@ import java.util.Map;
 /**
  * A JMSProxy subclass for <code>javax.jms.MessageProducer</code> instances.
  *
- * @exclude
+ *
  */
 public abstract class JMSProducer extends JMSProxy
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/services/messaging/adapters/JMSQueueProducer.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/services/messaging/adapters/JMSQueueProducer.java b/modules/core/src/flex/messaging/services/messaging/adapters/JMSQueueProducer.java
index 6ad034d..7b77ee8 100644
--- a/modules/core/src/flex/messaging/services/messaging/adapters/JMSQueueProducer.java
+++ b/modules/core/src/flex/messaging/services/messaging/adapters/JMSQueueProducer.java
@@ -35,7 +35,7 @@ import flex.messaging.MessageException;
 /**
  * A <code>JMSProducer</code> subclass specifically for JMS Queue senders.
  *
- * @exclude
+ *
  */
 public class JMSQueueProducer extends JMSProducer
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/services/messaging/adapters/JMSTopicConsumer.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/services/messaging/adapters/JMSTopicConsumer.java b/modules/core/src/flex/messaging/services/messaging/adapters/JMSTopicConsumer.java
index 4483e95..4a4498c 100644
--- a/modules/core/src/flex/messaging/services/messaging/adapters/JMSTopicConsumer.java
+++ b/modules/core/src/flex/messaging/services/messaging/adapters/JMSTopicConsumer.java
@@ -36,7 +36,7 @@ import java.util.concurrent.Callable;
 /**
  * A <code>JMSConsumer</code> subclass specifically for JMS Topic subscribers.
  *
- * @exclude
+ *
  */
 public class JMSTopicConsumer extends JMSConsumer
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/services/messaging/adapters/JMSTopicProducer.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/services/messaging/adapters/JMSTopicProducer.java b/modules/core/src/flex/messaging/services/messaging/adapters/JMSTopicProducer.java
index 8fce2d2..3e4941e 100644
--- a/modules/core/src/flex/messaging/services/messaging/adapters/JMSTopicProducer.java
+++ b/modules/core/src/flex/messaging/services/messaging/adapters/JMSTopicProducer.java
@@ -34,7 +34,7 @@ import java.util.Map;
 /**
  * A <code>JMSProducer</code> subclass specifically for JMS Topic publishers.
  *
- * @exclude
+ *
  */
 public class JMSTopicProducer extends JMSProducer
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/services/messaging/adapters/MessageReceiver.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/services/messaging/adapters/MessageReceiver.java b/modules/core/src/flex/messaging/services/messaging/adapters/MessageReceiver.java
index 604223b..6f4cde9 100644
--- a/modules/core/src/flex/messaging/services/messaging/adapters/MessageReceiver.java
+++ b/modules/core/src/flex/messaging/services/messaging/adapters/MessageReceiver.java
@@ -21,7 +21,7 @@ import javax.jms.JMSException;
 /**
  * An interface used by <code>JMSConsumer</code> to receive messages from JMS.
  *
- * @exclude
+ *
  */
 interface MessageReceiver
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/services/messaging/adapters/MessagingSecurityConstraintManager.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/services/messaging/adapters/MessagingSecurityConstraintManager.java b/modules/core/src/flex/messaging/services/messaging/adapters/MessagingSecurityConstraintManager.java
index d2eee2c..644771a 100644
--- a/modules/core/src/flex/messaging/services/messaging/adapters/MessagingSecurityConstraintManager.java
+++ b/modules/core/src/flex/messaging/services/messaging/adapters/MessagingSecurityConstraintManager.java
@@ -78,7 +78,7 @@ public final class MessagingSecurityConstraintManager
     }
 
     /**
-     * @exclude
+     *
      * Asserts send authorizations.
      */
     public void assertSendAuthorization()
@@ -87,7 +87,7 @@ public final class MessagingSecurityConstraintManager
     }
 
     /**
-     * @exclude
+     *
      * Asserts subscribe authorizations.
      */
     public void assertSubscribeAuthorization()
@@ -96,7 +96,7 @@ public final class MessagingSecurityConstraintManager
     }
 
     /**
-     * @exclude
+     *
      * Creates security constraints from the given server settings.
      *
      * @param serverSettings The <code>ConfigMap</code> of server settings.

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/services/messaging/adapters/SyncMessageReceiver.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/services/messaging/adapters/SyncMessageReceiver.java b/modules/core/src/flex/messaging/services/messaging/adapters/SyncMessageReceiver.java
index 4d48188..46fed23 100644
--- a/modules/core/src/flex/messaging/services/messaging/adapters/SyncMessageReceiver.java
+++ b/modules/core/src/flex/messaging/services/messaging/adapters/SyncMessageReceiver.java
@@ -30,7 +30,7 @@ import java.util.concurrent.TimeUnit;
  * A <code>MessageReceiver</code> that receives messages from JMS using
  * synchronous <code>javax.jms.MessageConsumer.receive</code> call.
  *
- * @exclude
+ *
  */
 class SyncMessageReceiver implements MessageReceiver
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/services/messaging/selector/JMSSelectorException.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/services/messaging/selector/JMSSelectorException.java b/modules/core/src/flex/messaging/services/messaging/selector/JMSSelectorException.java
index 5421bd3..f69d32b 100644
--- a/modules/core/src/flex/messaging/services/messaging/selector/JMSSelectorException.java
+++ b/modules/core/src/flex/messaging/services/messaging/selector/JMSSelectorException.java
@@ -21,7 +21,7 @@ import flex.messaging.MessageException;
 /**
  * Exception type for JMSSelector errors.
  *
- * @exclude
+ *
  */
 public class JMSSelectorException extends MessageException
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/util/Assert.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/util/Assert.java b/modules/core/src/flex/messaging/util/Assert.java
index 03159f0..a5f28a3 100644
--- a/modules/core/src/flex/messaging/util/Assert.java
+++ b/modules/core/src/flex/messaging/util/Assert.java
@@ -23,7 +23,7 @@ package flex.messaging.util;
  * Enable as follows:
  * java -Dassert
  * 
- * @exclude
+ *
  */
 public class Assert 
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/util/AssertionFailedError.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/util/AssertionFailedError.java b/modules/core/src/flex/messaging/util/AssertionFailedError.java
index 3d5108e..5f9a154 100644
--- a/modules/core/src/flex/messaging/util/AssertionFailedError.java
+++ b/modules/core/src/flex/messaging/util/AssertionFailedError.java
@@ -17,7 +17,7 @@
 package flex.messaging.util;
 
 /**
- * @exclude
+ *
  *
  */
 public class AssertionFailedError extends Error

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/util/Base64.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/util/Base64.java b/modules/core/src/flex/messaging/util/Base64.java
index 8eceec3..547b491 100644
--- a/modules/core/src/flex/messaging/util/Base64.java
+++ b/modules/core/src/flex/messaging/util/Base64.java
@@ -23,7 +23,7 @@ package flex.messaging.util;
  * drain less than everything that is currently
  * available.
  * 
- * @exclude
+ *
  */
 public class Base64
 {
@@ -59,7 +59,7 @@ public class Base64
                 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64
             };
     /**
-    * @exclude
+    *
     */
 
     public static class Decoder
@@ -146,7 +146,7 @@ public class Base64
     }
 
     /**
-    * @exclude
+    *
     */
     public static class Encoder
     {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/util/ClassUtil.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/util/ClassUtil.java b/modules/core/src/flex/messaging/util/ClassUtil.java
index 8b58c9b..9d11f64 100644
--- a/modules/core/src/flex/messaging/util/ClassUtil.java
+++ b/modules/core/src/flex/messaging/util/ClassUtil.java
@@ -29,7 +29,7 @@ import java.lang.reflect.Modifier;
  * and handle error conditions consistently across the RemoteObject
  * code base.
  *
- * @exclude
+ *
  */
 public class ClassUtil
 {
@@ -221,7 +221,7 @@ public class ClassUtil
         {
             if (cls != null)
             {
-                Constructor c = cls.getConstructor(new Class[]{});
+                Constructor c = cls.getConstructor();
                 int mod = c.getModifiers();
                 return Modifier.isPublic(mod);
             }

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/util/DoubleUtil.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/util/DoubleUtil.java b/modules/core/src/flex/messaging/util/DoubleUtil.java
index 0e4ea63..19dfbc8 100644
--- a/modules/core/src/flex/messaging/util/DoubleUtil.java
+++ b/modules/core/src/flex/messaging/util/DoubleUtil.java
@@ -17,12 +17,12 @@
 package flex.messaging.util;
 
 /**
- * @exclude
+ *
  */
 public class DoubleUtil
 {
     /**
-     * @exclude
+     *
      */
     public static long doubleToRawLongBits(double d)
     {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/util/Hex.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/util/Hex.java b/modules/core/src/flex/messaging/util/Hex.java
index f6268c6..a48fac8 100644
--- a/modules/core/src/flex/messaging/util/Hex.java
+++ b/modules/core/src/flex/messaging/util/Hex.java
@@ -23,7 +23,7 @@ package flex.messaging.util;
  * drain less than everything that is currently
  * available.
  * 
- * @exclude
+ *
  */
 public class Hex
 {
@@ -33,7 +33,7 @@ public class Hex
                 '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'
             };
     /**
-    * @exclude
+    *
     */
     public static class Decoder
     {
@@ -95,7 +95,7 @@ public class Hex
     }
 
     /**
-    * @exclude
+    *
     */
     public static class Encoder
     {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/util/MethodKey.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/util/MethodKey.java b/modules/core/src/flex/messaging/util/MethodKey.java
index 140e8be..d2eb7dc 100644
--- a/modules/core/src/flex/messaging/util/MethodKey.java
+++ b/modules/core/src/flex/messaging/util/MethodKey.java
@@ -23,7 +23,7 @@ import java.util.Arrays;
  * key consists of the Remote Object class containing this method, the method name,
  * and the classes representing the parameters in the signature of this method.
  *
- * @exclude
+ *
  */
 public class MethodKey
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/util/MethodMatcher.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/util/MethodMatcher.java b/modules/core/src/flex/messaging/util/MethodMatcher.java
index 31d0c34..6430a30 100644
--- a/modules/core/src/flex/messaging/util/MethodMatcher.java
+++ b/modules/core/src/flex/messaging/util/MethodMatcher.java
@@ -34,7 +34,7 @@ import java.lang.reflect.Method;
  * when several overloaded methods match very closely through the use
  * of various combinations of generic types.
  *
- * @exclude
+ *
  */
 public class MethodMatcher
 {
@@ -298,7 +298,7 @@ public class MethodMatcher
      *
      * @param parameters - A list of supplied parameters.
      * @return An array of <tt>Class</tt> instances indicating the class of each corresponding parameter.
-     * @exclude
+     *
      */
     public static Class[] paramTypes(List parameters)
     {
@@ -405,7 +405,7 @@ public class MethodMatcher
      * A utility class to help rank methods in the search
      * for a best match, given a name and collection of
      * input parameters.
-     * @exclude
+     *
      */
     public static class Match
     {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/util/RedeployManager.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/util/RedeployManager.java b/modules/core/src/flex/messaging/util/RedeployManager.java
index faa445c..b14c812 100644
--- a/modules/core/src/flex/messaging/util/RedeployManager.java
+++ b/modules/core/src/flex/messaging/util/RedeployManager.java
@@ -31,7 +31,7 @@ import java.util.concurrent.TimeUnit;
 /**
  * This class watches for changes on files and forces a re-deploy by touching the specified files.
  * 
- * @exclude
+ *
  */
 public class RedeployManager implements FlexComponent
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/util/SettingsReplaceUtil.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/util/SettingsReplaceUtil.java b/modules/core/src/flex/messaging/util/SettingsReplaceUtil.java
index a5907ee..df09a78 100644
--- a/modules/core/src/flex/messaging/util/SettingsReplaceUtil.java
+++ b/modules/core/src/flex/messaging/util/SettingsReplaceUtil.java
@@ -32,7 +32,7 @@ import java.util.Set;
  * Methods for replacing tokens in config files
  * {context.root}, {context-root}, {server.name}, {server-name}, {server.port}, {server-port}.
  * 
- * @exclude
+ *
  */
 public class SettingsReplaceUtil
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/util/TimeoutAbstractObject.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/util/TimeoutAbstractObject.java b/modules/core/src/flex/messaging/util/TimeoutAbstractObject.java
index 69465ed..1314ef0 100644
--- a/modules/core/src/flex/messaging/util/TimeoutAbstractObject.java
+++ b/modules/core/src/flex/messaging/util/TimeoutAbstractObject.java
@@ -23,7 +23,7 @@ import java.util.concurrent.Future;
  * providing the default behavior for an object that is capable of timing
  * out where that time out mechanism is managed by TimeoutManager.
  *
- * @exclude
+ *
  */
 public abstract class TimeoutAbstractObject implements TimeoutCapable
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/util/TimeoutCapable.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/util/TimeoutCapable.java b/modules/core/src/flex/messaging/util/TimeoutCapable.java
index 2cfa05d..e6226ae 100644
--- a/modules/core/src/flex/messaging/util/TimeoutCapable.java
+++ b/modules/core/src/flex/messaging/util/TimeoutCapable.java
@@ -23,7 +23,7 @@ import java.util.concurrent.Future;
  * out, where the timeout mechanism is provided by the TimeoutManager
  * class.
  *
- * @exclude
+ *
  */
 public interface TimeoutCapable
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/util/TimeoutManager.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/util/TimeoutManager.java b/modules/core/src/flex/messaging/util/TimeoutManager.java
index 8890cf9..3c794d3 100644
--- a/modules/core/src/flex/messaging/util/TimeoutManager.java
+++ b/modules/core/src/flex/messaging/util/TimeoutManager.java
@@ -29,7 +29,7 @@ import java.util.concurrent.TimeUnit;
  * facilities in the the Java concurrency package to provide a common utility
  * for scheduling timeout Futures and managing the underlying worker thread pools.
  *
- * @exclude
+ *
  */
 public class TimeoutManager
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/util/Trace.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/util/Trace.java b/modules/core/src/flex/messaging/util/Trace.java
index 4361b2e..39a5604 100644
--- a/modules/core/src/flex/messaging/util/Trace.java
+++ b/modules/core/src/flex/messaging/util/Trace.java
@@ -39,7 +39,7 @@ import java.util.Date;
  *
  * Add new xxx members as desired.
  *
- * @exclude
+ *
  */
 
 public class Trace 

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/util/URLEncoder.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/util/URLEncoder.java b/modules/core/src/flex/messaging/util/URLEncoder.java
index 6850151..65e1ffa 100644
--- a/modules/core/src/flex/messaging/util/URLEncoder.java
+++ b/modules/core/src/flex/messaging/util/URLEncoder.java
@@ -25,7 +25,7 @@ import java.io.UnsupportedEncodingException;
 /**
  * Utility class for URL encoding.
  * 
- * @exclude
+ *
  */
 public final class URLEncoder
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/util/URLEncoderUtil.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/util/URLEncoderUtil.java b/modules/core/src/flex/messaging/util/URLEncoderUtil.java
index 8577a9a..9b8433b 100644
--- a/modules/core/src/flex/messaging/util/URLEncoderUtil.java
+++ b/modules/core/src/flex/messaging/util/URLEncoderUtil.java
@@ -22,7 +22,7 @@ import java.net.URLEncoder;
 /**
  * Utility class for URL encoding
  * 
- * @exclude
+ *
  */
 public class URLEncoderUtil
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/util/WatchedObject.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/util/WatchedObject.java b/modules/core/src/flex/messaging/util/WatchedObject.java
index 2e330ed..baa0471 100644
--- a/modules/core/src/flex/messaging/util/WatchedObject.java
+++ b/modules/core/src/flex/messaging/util/WatchedObject.java
@@ -22,7 +22,7 @@ import java.io.FileNotFoundException;
 /**
  * Used by redeployment manager to monitor for changes to the files.
  *
- * @exclude
+ *
  */
 public class WatchedObject
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/util/XMLUtil.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/util/XMLUtil.java b/modules/core/src/flex/messaging/util/XMLUtil.java
index 9674a48..abc224d 100644
--- a/modules/core/src/flex/messaging/util/XMLUtil.java
+++ b/modules/core/src/flex/messaging/util/XMLUtil.java
@@ -36,7 +36,7 @@ import java.io.StringWriter;
  * Utility class for converting strings to XML documents and
  * vice versa.
  *
- * @exclude
+ *
  */
 public class XMLUtil
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/util/concurrent/DefaultThreadPoolExecutor.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/util/concurrent/DefaultThreadPoolExecutor.java b/modules/core/src/flex/messaging/util/concurrent/DefaultThreadPoolExecutor.java
index 3605d09..3298507 100644
--- a/modules/core/src/flex/messaging/util/concurrent/DefaultThreadPoolExecutor.java
+++ b/modules/core/src/flex/messaging/util/concurrent/DefaultThreadPoolExecutor.java
@@ -31,7 +31,7 @@ import java.util.concurrent.RejectedExecutionException;
  * Implements {@link Executor} and extends the <code>ThreadPoolExecutor</code> provided by the
  * Java 1.4.x-friendly backport of the <code>java.util.concurrent</code> API.
  * 
- * @exclude
+ *
  */
 public class DefaultThreadPoolExecutor extends ThreadPoolExecutor implements Executor
 {
@@ -134,7 +134,7 @@ public class DefaultThreadPoolExecutor extends ThreadPoolExecutor implements Exe
     //--------------------------------------------------------------------------
     
     /**
-     * @exclude
+     *
      * This implementation relies on the default <code>RejectedExecutionHandler</code>, {@link java.util.concurrent.ThreadPoolExecutor.AbortPolicy}, which
      * throws a <code>RejectedExecutionException</code> if the command cannot be queued for execution.
      */

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/util/concurrent/Executor.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/util/concurrent/Executor.java b/modules/core/src/flex/messaging/util/concurrent/Executor.java
index 63919ac..b8c3507 100644
--- a/modules/core/src/flex/messaging/util/concurrent/Executor.java
+++ b/modules/core/src/flex/messaging/util/concurrent/Executor.java
@@ -28,7 +28,7 @@ package flex.messaging.util.concurrent;
  * the callback on the <code>FailedExecutionHandler</code> if one has been set.
  * 
  * @see java.util.concurrent.Executor
- * @exclude
+ *
  */ 
 public interface Executor
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/opt/src/oracle/flex/messaging/security/OracleUser.java
----------------------------------------------------------------------
diff --git a/modules/opt/src/oracle/flex/messaging/security/OracleUser.java b/modules/opt/src/oracle/flex/messaging/security/OracleUser.java
index 9cc8b3e..a9b7746 100755
--- a/modules/opt/src/oracle/flex/messaging/security/OracleUser.java
+++ b/modules/opt/src/oracle/flex/messaging/security/OracleUser.java
@@ -32,7 +32,7 @@ import oracle.security.jazn.realm.RealmUser;
 /**
  * An Oracle specific implementation of java.security.Principal.
  * 
- * @exclude
+ *
  */
 public class OracleUser implements Principal
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/opt/src/tomcat/flex/messaging/security/Tomcat7Valve.java
----------------------------------------------------------------------
diff --git a/modules/opt/src/tomcat/flex/messaging/security/Tomcat7Valve.java b/modules/opt/src/tomcat/flex/messaging/security/Tomcat7Valve.java
index 2882049..997b6ea 100755
--- a/modules/opt/src/tomcat/flex/messaging/security/Tomcat7Valve.java
+++ b/modules/opt/src/tomcat/flex/messaging/security/Tomcat7Valve.java
@@ -50,7 +50,7 @@ import org.apache.catalina.valves.ValveBase;
 import org.apache.catalina .Wrapper;
 
 /**
- * @exclude
+ *
  * A Tomcat valve for allowing programmatic login.  This valve saves the container, 
  * something not available normally to a servlet, and allows login to the current realm. 
  * The pieces interacting with Tomcat are taken from org.apache.catalina.authenticator.AuthenticatorBase.

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/opt/src/tomcat/flex/messaging/security/TomcatValve.java
----------------------------------------------------------------------
diff --git a/modules/opt/src/tomcat/flex/messaging/security/TomcatValve.java b/modules/opt/src/tomcat/flex/messaging/security/TomcatValve.java
index eece167..48c016b 100755
--- a/modules/opt/src/tomcat/flex/messaging/security/TomcatValve.java
+++ b/modules/opt/src/tomcat/flex/messaging/security/TomcatValve.java
@@ -44,7 +44,7 @@ import org.apache.catalina.connector.Response;
 import org.apache.catalina.valves.ValveBase;
 
 /**
- * @exclude
+ *
  * A Tomcat valve for allowing programmatic login.  This valve saves the container, 
  * something not available normally to a servlet, and allows login to the current realm. 
  * The pieces interacting with Tomcat are taken from org.apache.catalina.authenticator.AuthenticatorBase.

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/opt/src/tomcat/flex/messaging/security/TomcatValve4150.java
----------------------------------------------------------------------
diff --git a/modules/opt/src/tomcat/flex/messaging/security/TomcatValve4150.java b/modules/opt/src/tomcat/flex/messaging/security/TomcatValve4150.java
index 4cb81b8..ddfa2f8 100755
--- a/modules/opt/src/tomcat/flex/messaging/security/TomcatValve4150.java
+++ b/modules/opt/src/tomcat/flex/messaging/security/TomcatValve4150.java
@@ -54,7 +54,7 @@ import java.util.List;
  *
  * JAR NOTE: this class is not in flex-messaging.jar but rather flex-tomcat-server.jar
  *
- * @exclude 
+ *
  */
 public class TomcatValve4150 extends ValveBase implements Lifecycle
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/opt/src/websphere/flex/messaging/util/concurrent/AsynchBeansWorkManagerExecutor.java
----------------------------------------------------------------------
diff --git a/modules/opt/src/websphere/flex/messaging/util/concurrent/AsynchBeansWorkManagerExecutor.java b/modules/opt/src/websphere/flex/messaging/util/concurrent/AsynchBeansWorkManagerExecutor.java
index 63a2a28..7b1d316 100755
--- a/modules/opt/src/websphere/flex/messaging/util/concurrent/AsynchBeansWorkManagerExecutor.java
+++ b/modules/opt/src/websphere/flex/messaging/util/concurrent/AsynchBeansWorkManagerExecutor.java
@@ -34,7 +34,7 @@ import flex.messaging.log.LogCategories;
  * For more information on the asynchbeans API, refer to the WAS Javadoc for 
  * <a href="http://publib.boulder.ibm.com/infocenter/wasinfo/v5r0/index.jsp?topic=/com.ibm.wasee.doc/info/ee/javadoc/ee/com/ibm/websphere/asynchbeans/WorkManager.html">WorkManager</a>.
  *
- * @exclude
+ *
  */
 public class AsynchBeansWorkManagerExecutor implements Executor
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/proxy/src/flex/management/runtime/messaging/services/HTTPProxyServiceControl.java
----------------------------------------------------------------------
diff --git a/modules/proxy/src/flex/management/runtime/messaging/services/HTTPProxyServiceControl.java b/modules/proxy/src/flex/management/runtime/messaging/services/HTTPProxyServiceControl.java
index aec2925..e5689ea 100755
--- a/modules/proxy/src/flex/management/runtime/messaging/services/HTTPProxyServiceControl.java
+++ b/modules/proxy/src/flex/management/runtime/messaging/services/HTTPProxyServiceControl.java
@@ -20,7 +20,7 @@ import flex.management.BaseControl;
 import flex.messaging.services.HTTPProxyService;
 
 /**
- * @exclude
+ *
  * The <code>HTTPProxyServiceControl</code> class is the MBean implementation
  * for monitoring and managing a <code>HTTPProxyService</code> at runtime.
  */
@@ -43,7 +43,7 @@ public class HTTPProxyServiceControl extends ServiceControl implements
 
 
     /**
-     * @exclude
+     *
      *  (non-Javadoc)
      * @see flex.management.BaseControlMBean#getType()
      */

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/proxy/src/flex/management/runtime/messaging/services/http/HTTPProxyAdapterControl.java
----------------------------------------------------------------------
diff --git a/modules/proxy/src/flex/management/runtime/messaging/services/http/HTTPProxyAdapterControl.java b/modules/proxy/src/flex/management/runtime/messaging/services/http/HTTPProxyAdapterControl.java
index 77a011a..22d05a3 100755
--- a/modules/proxy/src/flex/management/runtime/messaging/services/http/HTTPProxyAdapterControl.java
+++ b/modules/proxy/src/flex/management/runtime/messaging/services/http/HTTPProxyAdapterControl.java
@@ -21,7 +21,7 @@ import flex.management.runtime.messaging.services.ServiceAdapterControl;
 import flex.messaging.services.http.HTTPProxyAdapter;
 
 /**
- * @exclude
+ *
  * The <code>HTTPProxyAdapterControl</code> class is the MBean implemenation
  * for monitoring and managing <code>HTTPProxyAdapter</code>s at runtime.
  */
@@ -43,7 +43,7 @@ public class HTTPProxyAdapterControl extends ServiceAdapterControl implements
     }
 
     /**
-     * @exclude
+     *
      *
      *  (non-Javadoc)
      * @see flex.management.BaseControlMBean#getType()

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/proxy/src/flex/management/runtime/messaging/services/http/HTTPProxyDestinationControl.java
----------------------------------------------------------------------
diff --git a/modules/proxy/src/flex/management/runtime/messaging/services/http/HTTPProxyDestinationControl.java b/modules/proxy/src/flex/management/runtime/messaging/services/http/HTTPProxyDestinationControl.java
index e5e1f86..014ec7f 100755
--- a/modules/proxy/src/flex/management/runtime/messaging/services/http/HTTPProxyDestinationControl.java
+++ b/modules/proxy/src/flex/management/runtime/messaging/services/http/HTTPProxyDestinationControl.java
@@ -21,10 +21,10 @@ import java.util.Date;
 import flex.management.BaseControl;
 import flex.management.runtime.AdminConsoleTypes;
 import flex.management.runtime.messaging.DestinationControl;
-import flex.messaging.services.http.HTTPProxyDestination;;
+import flex.messaging.services.http.HTTPProxyDestination;
 
 /**
- * @exclude
+ *
  * The <code>HTTPProxyDestinationControl</code> class is the MBean implementation for
  * monitoring and managing a <code>HTTPProxyDestination</code> at runtime.
  */
@@ -74,7 +74,7 @@ public class HTTPProxyDestinationControl extends DestinationControl
     }
     
     /**
-     * @exclude
+     *
      *  (non-Javadoc)
      * @see flex.management.runtime.HTTPProxyServiceControlMBean#getInvokeSOAPCount()
      */
@@ -84,7 +84,7 @@ public class HTTPProxyDestinationControl extends DestinationControl
     }
     
     /**
-     * @exclude
+     *
      *  (non-Javadoc)
      * @see flex.management.runtime.HTTPProxyServiceControlMBean#resetInvokeSOAPCount()
      */
@@ -105,7 +105,7 @@ public class HTTPProxyDestinationControl extends DestinationControl
     }
     
     /**
-     * @exclude
+     *
      *  (non-Javadoc)
      * @see flex.management.runtime.HTTPProxyServiceControlMBean#getLastInvokeSOAPTimestamp()
      */
@@ -115,7 +115,7 @@ public class HTTPProxyDestinationControl extends DestinationControl
     }
     
     /**
-     * @exclude
+     *
      *  (non-Javadoc)
      * @see flex.management.runtime.HTTPProxyServiceControlMBean#getInvokeSOAPFrequency()
      */
@@ -133,7 +133,7 @@ public class HTTPProxyDestinationControl extends DestinationControl
     }
     
     /**
-     * @exclude
+     *
      *  (non-Javadoc)
      * @see flex.management.runtime.HTTPProxyServiceControlMBean#getInvokeHTTPCount()
      */
@@ -143,7 +143,7 @@ public class HTTPProxyDestinationControl extends DestinationControl
     }
     
     /**
-     * @exclude
+     *
      *  (non-Javadoc)
      * @see flex.management.runtime.HTTPProxyServiceControlMBean#resetInvokeHTTPCount()
      */
@@ -164,7 +164,7 @@ public class HTTPProxyDestinationControl extends DestinationControl
     }
     
     /**
-     * @exclude
+     *
      *  (non-Javadoc)
      * @see flex.management.runtime.HTTPProxyServiceControlMBean#getLastInvokeHTTPTimestamp()
      */
@@ -174,7 +174,7 @@ public class HTTPProxyDestinationControl extends DestinationControl
     }
 
     /**
-     * @exclude
+     *
      *  (non-Javadoc)
      * @see flex.management.runtime.HTTPProxyServiceControlMBean#getInvokeHTTPFrequency()
      */
@@ -192,7 +192,7 @@ public class HTTPProxyDestinationControl extends DestinationControl
     }
     
     /**
-     * @exclude
+     *
      *  (non-Javadoc)
      * @see flex.management.BaseControlMBean#getType()
      */


[4/4] flex-blazeds git commit: Removed all "exclude" javadoc annotations

Posted by cd...@apache.org.
Removed all "exclude" javadoc annotations


Project: http://git-wip-us.apache.org/repos/asf/flex-blazeds/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-blazeds/commit/56d1a01d
Tree: http://git-wip-us.apache.org/repos/asf/flex-blazeds/tree/56d1a01d
Diff: http://git-wip-us.apache.org/repos/asf/flex-blazeds/diff/56d1a01d

Branch: refs/heads/develop
Commit: 56d1a01dc4088b06c1abc2bee2aeb84c6cbd20c2
Parents: f80e095
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Thu Jul 30 13:19:24 2015 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Thu Jul 30 13:19:24 2015 +0200

----------------------------------------------------------------------
 .../config/AbstractConfigurationParser.java     |  2 +-
 .../flex/messaging/config/AdapterSettings.java  |  6 +-
 .../ApacheXPathClientConfigurationParser.java   |  2 +-
 .../flex/messaging/config/ChannelSettings.java  |  2 +-
 .../messaging/config/ClientConfiguration.java   |  2 +-
 .../config/ClientConfigurationParser.java       |  2 +-
 .../flex/messaging/config/ClusterSettings.java  |  6 +-
 .../config/ConfigurationConstants.java          |  2 +-
 .../config/ConfigurationFileResolver.java       |  2 +-
 .../messaging/config/ConfigurationParser.java   |  2 +-
 .../messaging/config/DestinationSettings.java   |  8 +--
 .../messaging/config/FlexClientSettings.java    |  2 +-
 .../messaging/config/LocalFileResolver.java     |  2 +-
 .../flex/messaging/config/LoggingSettings.java  |  2 +-
 .../messaging/config/LoginCommandSettings.java  |  2 +-
 .../messaging/config/PropertiesSettings.java    |  2 +-
 .../flex/messaging/config/ServiceSettings.java  |  2 +-
 .../messaging/config/ServicesConfiguration.java |  2 +-
 .../messaging/config/ServicesDependencies.java  |  4 +-
 .../flex/messaging/config/TargetSettings.java   |  2 +-
 .../flex/messaging/config/TokenReplacer.java    |  2 +-
 .../config/XPathClientConfigurationParser.java  |  2 +-
 .../src/flex/messaging/log/AbstractTarget.java  |  2 +-
 .../src/flex/messaging/log/ConsoleTarget.java   |  2 +-
 .../flex/messaging/log/LineFormattedTarget.java |  2 +-
 modules/common/src/flex/messaging/log/Log.java  | 16 ++---
 .../src/flex/messaging/log/LogCategories.java   |  2 +-
 .../common/src/flex/messaging/log/LogEvent.java |  2 +-
 .../common/src/flex/messaging/log/Logger.java   |  6 +-
 .../flex/messaging/util/BasicPrettyPrinter.java |  2 +-
 .../src/flex/messaging/util/ExceptionUtil.java  |  2 +-
 .../src/flex/messaging/util/FileUtils.java      |  2 +-
 .../src/flex/messaging/util/LocaleUtils.java    |  2 +-
 .../src/flex/messaging/util/ObjectTrace.java    |  2 +-
 .../flex/messaging/util/PrettyPrintable.java    |  2 +-
 .../src/flex/messaging/util/PrettyPrinter.java  |  2 +-
 .../util/PropertyStringResourceLoader.java      |  2 +-
 .../src/flex/messaging/util/ResourceLoader.java |  2 +-
 .../src/flex/messaging/util/StringUtils.java    |  2 +-
 .../core/src/flex/management/BaseControl.java   |  2 +-
 .../runtime/AdminConsoleDisplayRegistrar.java   |  2 +-
 .../AdminConsoleDisplayRegistrarMBean.java      |  2 +-
 .../client/FlexClientManagerControl.java        |  2 +-
 .../AbstractConnectionAwareSession.java         |  4 +-
 .../messaging/AbstractFlexSessionProvider.java  |  2 +-
 .../core/src/flex/messaging/FlexContext.java    | 38 +++++------
 .../core/src/flex/messaging/FlexSession.java    | 44 ++++++-------
 .../messaging/FlexSessionConnectivityEvent.java |  2 +-
 .../src/flex/messaging/FlexSessionManager.java  |  6 +-
 .../src/flex/messaging/HttpFlexSession.java     | 12 ++--
 .../core/src/flex/messaging/MessageBroker.java  | 66 ++++++++++----------
 .../flex/messaging/MessageBrokerServlet.java    |  2 +-
 .../core/src/flex/messaging/MessageClient.java  | 44 ++++++-------
 .../src/flex/messaging/MessageDestination.java  |  2 +-
 .../src/flex/messaging/MessageRoutedEvent.java  |  4 +-
 .../flex/messaging/MessageRoutedListener.java   |  2 +-
 .../flex/messaging/MessageRoutedNotifier.java   |  2 +-
 .../messaging/ServiceValidationListener.java    |  2 +-
 .../messaging/client/EndpointPushNotifier.java  | 10 +--
 .../src/flex/messaging/client/FlexClient.java   | 52 +++++++--------
 .../messaging/client/FlexClientManager.java     | 12 ++--
 .../FlexClientNotSubscribedException.java       |  4 +-
 .../FlexClientOutboundQueueProcessor.java       |  4 +-
 .../messaging/cluster/BroadcastHandler.java     |  2 +-
 .../src/flex/messaging/cluster/Cluster.java     |  2 +-
 .../messaging/cluster/ClusterException.java     |  2 +-
 .../flex/messaging/cluster/ClusterManager.java  |  6 +-
 .../cluster/ClusterMembershipListener.java      |  2 +-
 .../src/flex/messaging/cluster/ClusterNode.java |  2 +-
 .../messaging/cluster/RemoveNodeListener.java   |  2 +-
 .../ApacheXPathServerConfigurationParser.java   |  2 +-
 .../messaging/config/ConfigurationManager.java  |  2 +-
 .../flex/messaging/config/FactorySettings.java  |  2 +-
 .../config/FlexConfigurationManager.java        |  4 +-
 .../messaging/config/MessageFilterSettings.java |  6 +-
 .../config/MessagingConfiguration.java          |  8 +--
 .../flex/messaging/config/SecuritySettings.java |  2 +-
 .../config/ServerConfigurationParser.java       |  2 +-
 .../config/ServletResourceResolver.java         |  2 +-
 .../messaging/config/SharedServerSettings.java  |  2 +-
 .../flex/messaging/config/SystemSettings.java   |  2 +-
 .../config/XPathServerConfigurationParser.java  |  2 +-
 .../messaging/endpoints/AbstractEndpoint.java   | 22 +++----
 .../messaging/endpoints/BaseHTTPEndpoint.java   |  4 +-
 .../endpoints/BasePollingHTTPEndpoint.java      |  8 +--
 .../endpoints/DuplicateSessionException.java    |  4 +-
 .../src/flex/messaging/endpoints/Endpoint.java  |  2 +-
 .../flex/messaging/factories/JavaFactory.java   |  2 +-
 .../src/flex/messaging/io/AbstractProxy.java    |  2 +-
 .../core/src/flex/messaging/io/ArrayList.java   |  2 +-
 .../flex/messaging/io/ManagedObjectProxy.java   |  2 +-
 .../flex/messaging/io/MessageIOConstants.java   |  2 +-
 .../flex/messaging/io/MessageSerializer.java    |  2 +-
 .../flex/messaging/io/SerializationContext.java |  4 +-
 .../messaging/io/TypeMarshallingContext.java    |  4 +-
 .../flex/messaging/io/UnknownTypeException.java |  2 +-
 .../flex/messaging/io/amf/AbstractAmfInput.java | 10 +--
 .../messaging/io/amf/AbstractAmfOutput.java     |  4 +-
 .../flex/messaging/io/amf/ActionContext.java    | 14 ++---
 .../messaging/io/amf/ActionMessageInput.java    |  6 +-
 .../messaging/io/amf/ActionMessageOutput.java   | 12 ++--
 .../src/flex/messaging/io/amf/Amf0Input.java    |  6 +-
 .../src/flex/messaging/io/amf/Amf0Output.java   | 54 ++++++++--------
 .../src/flex/messaging/io/amf/Amf3Input.java    | 34 +++++-----
 .../src/flex/messaging/io/amf/Amf3Output.java   | 60 +++++++++---------
 .../src/flex/messaging/io/amf/Amf3Types.java    |  2 +-
 .../core/src/flex/messaging/io/amf/AmfIO.java   |  6 +-
 .../src/flex/messaging/io/amf/TraitsInfo.java   |  2 +-
 .../io/amf/translator/TranslationException.java |  2 +-
 .../translator/decoder/ActionScriptDecoder.java |  7 +--
 .../io/amf/translator/decoder/ArrayDecoder.java |  2 +-
 .../amf/translator/decoder/BooleanDecoder.java  |  2 +-
 .../amf/translator/decoder/CalendarDecoder.java |  2 +-
 .../translator/decoder/CharacterDecoder.java    |  2 +-
 .../translator/decoder/CollectionDecoder.java   |  2 +-
 .../io/amf/translator/decoder/DateDecoder.java  |  2 +-
 .../amf/translator/decoder/DecoderFactory.java  |  4 +-
 .../io/amf/translator/decoder/EnumDecoder.java  |  2 +-
 .../io/amf/translator/decoder/MapDecoder.java   |  2 +-
 .../amf/translator/decoder/NativeDecoder.java   |  2 +-
 .../io/amf/translator/decoder/NullDecoder.java  |  2 +-
 .../amf/translator/decoder/NumberDecoder.java   |  2 +-
 .../decoder/ReferenceAwareArrayDecoder.java     |  2 +-
 .../decoder/ReferenceAwareCalendarDecoder.java  |  2 +-
 .../ReferenceAwareCollectionDecoder.java        |  4 +-
 .../decoder/ReferenceAwareDateDecoder.java      |  2 +-
 .../decoder/ReferenceAwareMapDecoder.java       |  2 +-
 .../ReferenceAwareTypedObjectDecoder.java       |  2 +-
 .../amf/translator/decoder/StringDecoder.java   |  2 +-
 .../translator/decoder/TypedObjectDecoder.java  |  2 +-
 .../io/amfx/AmfxMessageSerializer.java          |  2 +-
 .../src/flex/messaging/io/amfx/AmfxOutput.java  | 52 +++++++--------
 .../flex/messaging/log/ServletLogTarget.java    |  2 +-
 .../messaging/messages/AbstractMessage.java     | 15 ++---
 .../messaging/messages/AcknowledgeMessage.java  |  8 +--
 .../messages/AcknowledgeMessageExt.java         |  2 +-
 .../flex/messaging/messages/AsyncMessage.java   |  6 +-
 .../messaging/messages/AsyncMessageExt.java     |  2 +-
 .../messaging/messages/BatchableMessage.java    |  2 +-
 .../flex/messaging/messages/CommandMessage.java | 16 ++---
 .../messaging/messages/CommandMessageExt.java   |  2 +-
 .../flex/messaging/messages/ErrorMessage.java   |  4 +-
 .../flex/messaging/messages/HTTPMessage.java    |  2 +-
 .../src/flex/messaging/messages/Message.java    |  2 +-
 .../messages/MessagePerformanceInfo.java        | 34 +++++-----
 .../messages/MessagePerformanceUtils.java       | 28 ++++-----
 .../src/flex/messaging/messages/RPCMessage.java |  2 +-
 .../messaging/messages/RemotingMessage.java     |  2 +-
 .../flex/messaging/messages/SOAPMessage.java    |  2 +-
 .../flex/messaging/messages/SmallMessage.java   |  2 +-
 .../security/AppServerLoginCommand.java         |  2 +-
 .../flex/messaging/security/LoginManager.java   |  2 +-
 .../messaging/security/SecurityException.java   |  8 +--
 .../messaging/services/AbstractService.java     |  2 +-
 .../services/AuthenticationService.java         | 20 +++---
 .../flex/messaging/services/MessageService.java | 24 +++----
 .../messaging/services/ServiceException.java    |  7 +--
 .../services/messaging/MessagingConstants.java  |  2 +-
 .../services/messaging/RemoteMessageClient.java |  4 +-
 .../messaging/RemoteSubscriptionManager.java    |  2 +-
 .../services/messaging/SubscriptionManager.java |  2 +-
 .../messaging/services/messaging/Subtopic.java  | 23 ++-----
 .../services/messaging/ThrottleManager.java     |  6 +-
 .../adapters/AsyncMessageReceiver.java          |  2 +-
 .../messaging/adapters/JMSConfigConstants.java  |  2 +-
 .../messaging/adapters/JMSMessageEvent.java     |  2 +-
 .../messaging/adapters/JMSProducer.java         |  2 +-
 .../messaging/adapters/JMSQueueProducer.java    |  2 +-
 .../messaging/adapters/JMSTopicConsumer.java    |  2 +-
 .../messaging/adapters/JMSTopicProducer.java    |  2 +-
 .../messaging/adapters/MessageReceiver.java     |  2 +-
 .../MessagingSecurityConstraintManager.java     |  6 +-
 .../messaging/adapters/SyncMessageReceiver.java |  2 +-
 .../selector/JMSSelectorException.java          |  2 +-
 .../core/src/flex/messaging/util/Assert.java    |  2 +-
 .../messaging/util/AssertionFailedError.java    |  2 +-
 .../core/src/flex/messaging/util/Base64.java    |  6 +-
 .../core/src/flex/messaging/util/ClassUtil.java |  4 +-
 .../src/flex/messaging/util/DoubleUtil.java     |  4 +-
 modules/core/src/flex/messaging/util/Hex.java   |  6 +-
 .../core/src/flex/messaging/util/MethodKey.java |  2 +-
 .../src/flex/messaging/util/MethodMatcher.java  |  6 +-
 .../flex/messaging/util/RedeployManager.java    |  2 +-
 .../messaging/util/SettingsReplaceUtil.java     |  2 +-
 .../messaging/util/TimeoutAbstractObject.java   |  2 +-
 .../src/flex/messaging/util/TimeoutCapable.java |  2 +-
 .../src/flex/messaging/util/TimeoutManager.java |  2 +-
 modules/core/src/flex/messaging/util/Trace.java |  2 +-
 .../src/flex/messaging/util/URLEncoder.java     |  2 +-
 .../src/flex/messaging/util/URLEncoderUtil.java |  2 +-
 .../src/flex/messaging/util/WatchedObject.java  |  2 +-
 .../core/src/flex/messaging/util/XMLUtil.java   |  2 +-
 .../concurrent/DefaultThreadPoolExecutor.java   |  4 +-
 .../messaging/util/concurrent/Executor.java     |  2 +-
 .../flex/messaging/security/OracleUser.java     |  2 +-
 .../flex/messaging/security/Tomcat7Valve.java   |  2 +-
 .../flex/messaging/security/TomcatValve.java    |  2 +-
 .../messaging/security/TomcatValve4150.java     |  2 +-
 .../AsynchBeansWorkManagerExecutor.java         |  2 +-
 .../services/HTTPProxyServiceControl.java       |  4 +-
 .../services/http/HTTPProxyAdapterControl.java  |  4 +-
 .../http/HTTPProxyDestinationControl.java       | 22 +++----
 .../http/HTTPProxyDestinationControlMBean.java  |  2 +-
 .../services/http/SOAPProxyAdapterControl.java  |  4 +-
 .../services/http/ExternalProxySettings.java    |  2 +-
 .../http/HostConfigurationSettings.java         |  2 +-
 .../EasySSLProtocolSocketFactory.java           | 14 ++---
 .../http/httpclient/EasyX509TrustManager.java   |  2 +-
 .../services/http/httpclient/FlexGetMethod.java |  2 +-
 .../http/httpclient/FlexPostMethod.java         |  2 +-
 .../services/http/proxy/AccessFilter.java       |  2 +-
 .../services/http/proxy/CookieInfo.java         |  2 +-
 .../services/http/proxy/ErrorFilter.java        |  2 +-
 .../services/http/proxy/ProxyConstants.java     |  2 +-
 .../services/http/proxy/ProxyContext.java       |  2 +-
 .../services/http/proxy/ProxyContextFilter.java |  2 +-
 .../services/http/proxy/ProxyException.java     |  2 +-
 .../services/http/proxy/ProxyFilter.java        |  2 +-
 .../services/http/proxy/ProxyUtil.java          |  2 +-
 .../services/http/proxy/RequestFilter.java      |  2 +-
 .../services/http/proxy/RequestUtil.java        |  2 +-
 .../services/http/proxy/ResponseFilter.java     |  2 +-
 .../services/http/proxy/ResponseUtil.java       |  2 +-
 .../services/http/proxy/SecurityFilter.java     |  2 +-
 .../services/http/proxy/SharedProxyContext.java |  2 +-
 .../messaging/services/http/proxy/Target.java   |  2 +-
 .../messaging/services/RemotingService.java     |  2 +-
 .../services/remoting/RemotingDestination.java  |  4 +-
 .../adapters/NoSuchMethodException.java         |  2 +-
 .../adapters/NoSuchServiceException.java        |  2 +-
 230 files changed, 636 insertions(+), 664 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/config/AbstractConfigurationParser.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/config/AbstractConfigurationParser.java b/modules/common/src/flex/messaging/config/AbstractConfigurationParser.java
index 62f4ac6..ce7f92f 100644
--- a/modules/common/src/flex/messaging/config/AbstractConfigurationParser.java
+++ b/modules/common/src/flex/messaging/config/AbstractConfigurationParser.java
@@ -41,7 +41,7 @@ import flex.messaging.util.FileUtils;
 /**
  * Provides a common base for DOM / XPath based ConfigurationParsers.
  *
- * @exclude
+ *
  */
 public abstract class AbstractConfigurationParser implements ConfigurationParser, ConfigurationConstants, EntityResolver
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/config/AdapterSettings.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/config/AdapterSettings.java b/modules/common/src/flex/messaging/config/AdapterSettings.java
index 78878a6..542a093 100644
--- a/modules/common/src/flex/messaging/config/AdapterSettings.java
+++ b/modules/common/src/flex/messaging/config/AdapterSettings.java
@@ -26,7 +26,7 @@ package flex.messaging.config;
  * </p>
  *
  * @see flex.messaging.services.ServiceAdapter
- * @exclude
+ *
  */
 public class AdapterSettings extends PropertiesSettings
 {
@@ -111,7 +111,7 @@ public class AdapterSettings extends PropertiesSettings
 
     /**
      * Internal use only.
-     * @exclude
+     *
      */
     String getSourceFile()
     {
@@ -120,7 +120,7 @@ public class AdapterSettings extends PropertiesSettings
 
     /**
      * Internal use only.
-     * @exclude
+     *
      */
     void setSourceFile(String file)
     {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/config/ApacheXPathClientConfigurationParser.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/config/ApacheXPathClientConfigurationParser.java b/modules/common/src/flex/messaging/config/ApacheXPathClientConfigurationParser.java
index 5d6a345..2ad8764 100644
--- a/modules/common/src/flex/messaging/config/ApacheXPathClientConfigurationParser.java
+++ b/modules/common/src/flex/messaging/config/ApacheXPathClientConfigurationParser.java
@@ -29,7 +29,7 @@ import javax.xml.transform.TransformerException;
  * sections of the document need to be parsed first.
  * </p>
  *
- * @exclude
+ *
  */
 public class ApacheXPathClientConfigurationParser extends ClientConfigurationParser
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/config/ChannelSettings.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/config/ChannelSettings.java b/modules/common/src/flex/messaging/config/ChannelSettings.java
index ecb09b5..badc6e2 100644
--- a/modules/common/src/flex/messaging/config/ChannelSettings.java
+++ b/modules/common/src/flex/messaging/config/ChannelSettings.java
@@ -24,7 +24,7 @@ import flex.messaging.util.StringUtils;
  * to be modified without affecting needing to update the configuration
  * parser.
  *
- * @exclude
+ *
  */
 public class ChannelSettings extends PropertiesSettings
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/config/ClientConfiguration.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/config/ClientConfiguration.java b/modules/common/src/flex/messaging/config/ClientConfiguration.java
index 2e38eaa..df6f03f 100644
--- a/modules/common/src/flex/messaging/config/ClientConfiguration.java
+++ b/modules/common/src/flex/messaging/config/ClientConfiguration.java
@@ -24,7 +24,7 @@ import java.util.List;
 import java.util.Map;
 
 /**
- * @exclude
+ *
  */
 public class ClientConfiguration implements ServicesConfiguration
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/config/ClientConfigurationParser.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/config/ClientConfigurationParser.java b/modules/common/src/flex/messaging/config/ClientConfigurationParser.java
index bbdccdd..cff5d47 100644
--- a/modules/common/src/flex/messaging/config/ClientConfigurationParser.java
+++ b/modules/common/src/flex/messaging/config/ClientConfigurationParser.java
@@ -32,7 +32,7 @@ import org.w3c.dom.NodeList;
  * processed to generate the information that the client needs at runtime,
  * such as channel definitions and service destination properties.
  *
- * @exclude
+ *
  */
 public abstract class ClientConfigurationParser extends AbstractConfigurationParser
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/config/ClusterSettings.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/config/ClusterSettings.java b/modules/common/src/flex/messaging/config/ClusterSettings.java
index 15edfe3..4b9bbbf 100644
--- a/modules/common/src/flex/messaging/config/ClusterSettings.java
+++ b/modules/common/src/flex/messaging/config/ClusterSettings.java
@@ -17,7 +17,7 @@
 package flex.messaging.config;
 
 /**
- * @exclude
+ *
  */
 public class ClusterSettings extends PropertiesSettings
 {
@@ -131,7 +131,7 @@ public class ClusterSettings extends PropertiesSettings
      * The default is 'flex.messaging.cluster.JGroupsCluster'.
      *
      * @param className
-     * @exclude
+     *
      */
     public void setImplementationClass(String className)
     {
@@ -143,7 +143,7 @@ public class ClusterSettings extends PropertiesSettings
      * The class must support the flex.messaging.cluster.Cluster interface.
      *
      * @return The implementation class name.
-     * @exclude
+     *
      */
     public String getImplementationClass()
     {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/config/ConfigurationConstants.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/config/ConfigurationConstants.java b/modules/common/src/flex/messaging/config/ConfigurationConstants.java
index 2310a66..35fcf34 100644
--- a/modules/common/src/flex/messaging/config/ConfigurationConstants.java
+++ b/modules/common/src/flex/messaging/config/ConfigurationConstants.java
@@ -17,7 +17,7 @@
 package flex.messaging.config;
 
 /**
- * @exclude
+ *
  */
 public interface ConfigurationConstants
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/config/ConfigurationFileResolver.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/config/ConfigurationFileResolver.java b/modules/common/src/flex/messaging/config/ConfigurationFileResolver.java
index 60beebf..8336d2b 100644
--- a/modules/common/src/flex/messaging/config/ConfigurationFileResolver.java
+++ b/modules/common/src/flex/messaging/config/ConfigurationFileResolver.java
@@ -20,7 +20,7 @@ import java.io.InputStream;
 import java.util.List;
 
 /**
- * @exclude
+ *
  */
 public interface ConfigurationFileResolver
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/config/ConfigurationParser.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/config/ConfigurationParser.java b/modules/common/src/flex/messaging/config/ConfigurationParser.java
index 78f8af2..ef8aaeb 100644
--- a/modules/common/src/flex/messaging/config/ConfigurationParser.java
+++ b/modules/common/src/flex/messaging/config/ConfigurationParser.java
@@ -20,7 +20,7 @@ package flex.messaging.config;
  * Configuration parser for Flex Data Services. The parser reads in
  * a configuration file and populates a ServicesConfiguration instance.
  *
- * @exclude
+ *
  */
 public interface ConfigurationParser
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/config/DestinationSettings.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/config/DestinationSettings.java b/modules/common/src/flex/messaging/config/DestinationSettings.java
index 6f8d3d0..d280a30 100644
--- a/modules/common/src/flex/messaging/config/DestinationSettings.java
+++ b/modules/common/src/flex/messaging/config/DestinationSettings.java
@@ -31,12 +31,12 @@ import java.util.List;
  * </p>
  *
  * @see flex.messaging.Destination
- * @exclude
+ *
  */
 public class DestinationSettings extends PropertiesSettings
 {
     /**
-     * @exclude
+     *
      */
     public static final String SERVER_ELEMENT = "server";
 
@@ -71,7 +71,7 @@ public class DestinationSettings extends PropertiesSettings
 
     /**
      * Internal use only.
-     * @exclude
+     *
      */
     String getSourceFile()
     {
@@ -80,7 +80,7 @@ public class DestinationSettings extends PropertiesSettings
 
     /**
      * Internal use only.
-     * @exclude
+     *
      */
     void setSourceFile(String sourceFile)
     {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/config/FlexClientSettings.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/config/FlexClientSettings.java b/modules/common/src/flex/messaging/config/FlexClientSettings.java
index 695b274..92f0ac6 100644
--- a/modules/common/src/flex/messaging/config/FlexClientSettings.java
+++ b/modules/common/src/flex/messaging/config/FlexClientSettings.java
@@ -17,7 +17,7 @@
 package flex.messaging.config;
 
 /**
- * @exclude
+ *
  */
 public class FlexClientSettings extends PropertiesSettings
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/config/LocalFileResolver.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/config/LocalFileResolver.java b/modules/common/src/flex/messaging/config/LocalFileResolver.java
index 25c6309..04b623b 100644
--- a/modules/common/src/flex/messaging/config/LocalFileResolver.java
+++ b/modules/common/src/flex/messaging/config/LocalFileResolver.java
@@ -26,7 +26,7 @@ import java.util.List;
 import java.util.Stack;
 
 /**
- * @exclude
+ *
  */
 public class LocalFileResolver implements ConfigurationFileResolver
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/config/LoggingSettings.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/config/LoggingSettings.java b/modules/common/src/flex/messaging/config/LoggingSettings.java
index 83877b2..5fe26e1 100644
--- a/modules/common/src/flex/messaging/config/LoggingSettings.java
+++ b/modules/common/src/flex/messaging/config/LoggingSettings.java
@@ -23,7 +23,7 @@ import java.util.ArrayList;
  * A log maintains a series of Loggers for each logging category and
  * Targets are established that listen for LogEvents on those Loggers.
  *
- * @exclude
+ *
  */
 public class LoggingSettings extends PropertiesSettings
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/config/LoginCommandSettings.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/config/LoginCommandSettings.java b/modules/common/src/flex/messaging/config/LoginCommandSettings.java
index 36314a5..2cc0ccd 100644
--- a/modules/common/src/flex/messaging/config/LoginCommandSettings.java
+++ b/modules/common/src/flex/messaging/config/LoginCommandSettings.java
@@ -19,7 +19,7 @@ package flex.messaging.config;
 /**
  * Settings for <code>LoginCommand</code> class.
  *
- * @exclude
+ *
  */
 public class LoginCommandSettings
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/config/PropertiesSettings.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/config/PropertiesSettings.java b/modules/common/src/flex/messaging/config/PropertiesSettings.java
index 8b4b5ea..4fa0a83 100644
--- a/modules/common/src/flex/messaging/config/PropertiesSettings.java
+++ b/modules/common/src/flex/messaging/config/PropertiesSettings.java
@@ -31,7 +31,7 @@ import java.util.List;
  * and added as a Map.
  * </p>
  *
- * @exclude
+ *
  */
 public abstract class PropertiesSettings
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/config/ServiceSettings.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/config/ServiceSettings.java b/modules/common/src/flex/messaging/config/ServiceSettings.java
index 4c2526b..44d95b5 100644
--- a/modules/common/src/flex/messaging/config/ServiceSettings.java
+++ b/modules/common/src/flex/messaging/config/ServiceSettings.java
@@ -34,7 +34,7 @@ import java.util.Map;
  * of actions allowed by that service.
  * </p>
  *
- * @exclude
+ *
  */
 public class ServiceSettings extends PropertiesSettings
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/config/ServicesConfiguration.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/config/ServicesConfiguration.java b/modules/common/src/flex/messaging/config/ServicesConfiguration.java
index d97d129..561d75b 100644
--- a/modules/common/src/flex/messaging/config/ServicesConfiguration.java
+++ b/modules/common/src/flex/messaging/config/ServicesConfiguration.java
@@ -25,7 +25,7 @@ import java.util.Map;
  * Implementations may have different levels of detail
  * based on how much of the configuration is supported.
  *
- * @exclude
+ *
  */
 public interface ServicesConfiguration
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/config/ServicesDependencies.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/config/ServicesDependencies.java b/modules/common/src/flex/messaging/config/ServicesDependencies.java
index 487e9ed..92b7c34 100644
--- a/modules/common/src/flex/messaging/config/ServicesDependencies.java
+++ b/modules/common/src/flex/messaging/config/ServicesDependencies.java
@@ -34,7 +34,7 @@ import flex.messaging.LocalizedException;
  * PreLink. It also requires a list of channel classes to be added as
  * dependencies.
  *
- * @exclude
+ *
  */
 public class ServicesDependencies
 {
@@ -623,7 +623,7 @@ public class ServicesDependencies
             {
                 List children = (List)value;
                 for (Iterator childrenIter = children.iterator(); childrenIter.hasNext();)
-                    addStringProperty(buf, indent, name, (String)childrenIter.next());;
+                    addStringProperty(buf, indent, name, (String)childrenIter.next());
             }
             else if (value instanceof ConfigMap)
             {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/config/TargetSettings.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/config/TargetSettings.java b/modules/common/src/flex/messaging/config/TargetSettings.java
index 65febeb..3bbbf4d 100644
--- a/modules/common/src/flex/messaging/config/TargetSettings.java
+++ b/modules/common/src/flex/messaging/config/TargetSettings.java
@@ -28,7 +28,7 @@ import flex.messaging.log.LogCategories;
  * categories it is interested in, and a collection of
  * properties required to initialize the target.
  *
- * @exclude
+ *
  */
 public class TargetSettings extends PropertiesSettings
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/config/TokenReplacer.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/config/TokenReplacer.java b/modules/common/src/flex/messaging/config/TokenReplacer.java
index c01f99e..90c4fd0 100644
--- a/modules/common/src/flex/messaging/config/TokenReplacer.java
+++ b/modules/common/src/flex/messaging/config/TokenReplacer.java
@@ -43,7 +43,7 @@ import flex.messaging.util.StringUtils;
  * If a token value is both specified as a JVM property and inside the token.file,
  * JVM property takes precedence.
  *
- * @exclude
+ *
  */
 public class TokenReplacer
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/config/XPathClientConfigurationParser.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/config/XPathClientConfigurationParser.java b/modules/common/src/flex/messaging/config/XPathClientConfigurationParser.java
index 54e3edf..2495754 100644
--- a/modules/common/src/flex/messaging/config/XPathClientConfigurationParser.java
+++ b/modules/common/src/flex/messaging/config/XPathClientConfigurationParser.java
@@ -32,7 +32,7 @@ import javax.xml.xpath.XPathFactory;
  * sections of the document need to be parsed first.
  * </p>
  *
- * @exclude
+ *
  */
 public class XPathClientConfigurationParser extends ClientConfigurationParser
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/log/AbstractTarget.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/log/AbstractTarget.java b/modules/common/src/flex/messaging/log/AbstractTarget.java
index ec2696b..a0888f9 100644
--- a/modules/common/src/flex/messaging/log/AbstractTarget.java
+++ b/modules/common/src/flex/messaging/log/AbstractTarget.java
@@ -25,7 +25,7 @@ import java.util.Collections;
 import java.util.List;
 
 /**
- * @exclude
+ *
  */
 public abstract class AbstractTarget implements Target
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/log/ConsoleTarget.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/log/ConsoleTarget.java b/modules/common/src/flex/messaging/log/ConsoleTarget.java
index b1245ce..b9faf76 100644
--- a/modules/common/src/flex/messaging/log/ConsoleTarget.java
+++ b/modules/common/src/flex/messaging/log/ConsoleTarget.java
@@ -17,7 +17,7 @@
 package flex.messaging.log;
 
 /**
- * @exclude
+ *
  */
 public class ConsoleTarget extends LineFormattedTarget
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/log/LineFormattedTarget.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/log/LineFormattedTarget.java b/modules/common/src/flex/messaging/log/LineFormattedTarget.java
index a406890..1864bb0 100644
--- a/modules/common/src/flex/messaging/log/LineFormattedTarget.java
+++ b/modules/common/src/flex/messaging/log/LineFormattedTarget.java
@@ -25,7 +25,7 @@ import java.text.SimpleDateFormat;
 import java.util.Date;
 
 /**
- * @exclude
+ *
  */
 public class LineFormattedTarget extends AbstractTarget
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/log/Log.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/log/Log.java b/modules/common/src/flex/messaging/log/Log.java
index 5e14048..043a6b1 100644
--- a/modules/common/src/flex/messaging/log/Log.java
+++ b/modules/common/src/flex/messaging/log/Log.java
@@ -30,7 +30,7 @@ import java.util.Map;
 import java.util.HashSet;
 
 /**
- * @exclude
+ *
  */
 public class Log
 {
@@ -199,7 +199,7 @@ public class Log
     }
 
     /**
-     * @exclude
+     *
      */
     public static Logger getLogger(Log log, String category)
     {
@@ -426,7 +426,7 @@ public class Log
     }
 
     /**
-     * @exclude
+     *
      */
     public static void flush()
     {
@@ -439,7 +439,7 @@ public class Log
     }
 
     /**
-     * @exclude
+     *
      */
     public static short readLevel(String l)
     {
@@ -477,7 +477,7 @@ public class Log
     }
 
     /**
-     * @exclude
+     *
      * This method checks the specified string value for illegal characters.
      *
      * @param value to check for illegal characters.
@@ -502,7 +502,7 @@ public class Log
     }
 
     /**
-     * @exclude
+     *
      * Returns the PrettyPrinter used by the Log.
      */
     public static PrettyPrinter getPrettyPrinter()
@@ -523,7 +523,7 @@ public class Log
     }
 
     /**
-     * @exclude
+     *
      * Returns the current target level for the Log.
      */
     public static short getTargetLevel()
@@ -532,7 +532,7 @@ public class Log
     }
 
     /**
-     * @exclude
+     *
      * Sets the pretty printer class name used by the log.
      *
      * @param value Name of the pretty printer class.

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/log/LogCategories.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/log/LogCategories.java b/modules/common/src/flex/messaging/log/LogCategories.java
index 5267ba2..2cb6094 100644
--- a/modules/common/src/flex/messaging/log/LogCategories.java
+++ b/modules/common/src/flex/messaging/log/LogCategories.java
@@ -17,7 +17,7 @@
 package flex.messaging.log;
 
 /**
- * @exclude
+ *
  *
  * This class contains all the log categories used in our classes. When adding
  * a new log category, make sure the sample configuration file is updated

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/log/LogEvent.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/log/LogEvent.java b/modules/common/src/flex/messaging/log/LogEvent.java
index 1eccc58..7492352 100644
--- a/modules/common/src/flex/messaging/log/LogEvent.java
+++ b/modules/common/src/flex/messaging/log/LogEvent.java
@@ -17,7 +17,7 @@
 package flex.messaging.log;
 
 /**
- * @exclude
+ *
  */
 public class LogEvent
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/log/Logger.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/log/Logger.java b/modules/common/src/flex/messaging/log/Logger.java
index a424437..8684a3e 100644
--- a/modules/common/src/flex/messaging/log/Logger.java
+++ b/modules/common/src/flex/messaging/log/Logger.java
@@ -27,7 +27,7 @@ import java.util.Iterator;
  * methods to log information out at the desired level. Each <code>Logger</code>
  * will log information out for a log category that is settable.
  *
- * @exclude
+ *
  */
 public class Logger
 {
@@ -344,7 +344,7 @@ public class Logger
     }
 
     /**
-     * @exclude
+     *
      * The methods named according to log level delegate to this method to log.
      *
      * @param level The log level.
@@ -358,7 +358,7 @@ public class Logger
     }
 
     /**
-     * @exclude
+     *
      * Logs a passed message if its level verifies as high enough.
      *
      * @param level The log level.

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/util/BasicPrettyPrinter.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/util/BasicPrettyPrinter.java b/modules/common/src/flex/messaging/util/BasicPrettyPrinter.java
index 9ac7c6d..19fa547 100644
--- a/modules/common/src/flex/messaging/util/BasicPrettyPrinter.java
+++ b/modules/common/src/flex/messaging/util/BasicPrettyPrinter.java
@@ -27,7 +27,7 @@ import java.util.Map;
  * Prettifies the representation of an Object as a String. Complex
  * types are not traversed.
  *
- * @exclude
+ *
  */
 public class BasicPrettyPrinter implements PrettyPrinter
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/util/ExceptionUtil.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/util/ExceptionUtil.java b/modules/common/src/flex/messaging/util/ExceptionUtil.java
index 966628d..7e6151a 100644
--- a/modules/common/src/flex/messaging/util/ExceptionUtil.java
+++ b/modules/common/src/flex/messaging/util/ExceptionUtil.java
@@ -24,7 +24,7 @@ import java.util.NoSuchElementException;
 import java.util.StringTokenizer;
 
 /**
- * @exclude
+ *
  */
 public class ExceptionUtil
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/util/FileUtils.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/util/FileUtils.java b/modules/common/src/flex/messaging/util/FileUtils.java
index 3292491..a0ea851 100644
--- a/modules/common/src/flex/messaging/util/FileUtils.java
+++ b/modules/common/src/flex/messaging/util/FileUtils.java
@@ -21,7 +21,7 @@ import java.io.IOException;
 import java.io.InputStream;
 
 /**
- * @exclude
+ *
  */
 public class FileUtils
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/util/LocaleUtils.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/util/LocaleUtils.java b/modules/common/src/flex/messaging/util/LocaleUtils.java
index 17cd80d..5800433 100644
--- a/modules/common/src/flex/messaging/util/LocaleUtils.java
+++ b/modules/common/src/flex/messaging/util/LocaleUtils.java
@@ -19,7 +19,7 @@ package flex.messaging.util;
 import java.util.Locale;
 
 /**
- * @exclude
+ *
  */
 public class LocaleUtils
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/util/ObjectTrace.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/util/ObjectTrace.java b/modules/common/src/flex/messaging/util/ObjectTrace.java
index c7ebb34..a097d94 100644
--- a/modules/common/src/flex/messaging/util/ObjectTrace.java
+++ b/modules/common/src/flex/messaging/util/ObjectTrace.java
@@ -24,7 +24,7 @@ import flex.messaging.log.Log;
  * Note that new lines are NOT added after the individual values
  * in complex type properties.
  *
- * @exclude
+ *
  */
 public class ObjectTrace
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/util/PrettyPrintable.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/util/PrettyPrintable.java b/modules/common/src/flex/messaging/util/PrettyPrintable.java
index 1a41aac..68fcc6e 100644
--- a/modules/common/src/flex/messaging/util/PrettyPrintable.java
+++ b/modules/common/src/flex/messaging/util/PrettyPrintable.java
@@ -20,7 +20,7 @@ package flex.messaging.util;
  * Allows an Object to customize how it is pretty printed in
  * logging/debugging output.
  *
- * @exclude
+ *
  */
 public interface PrettyPrintable
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/util/PrettyPrinter.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/util/PrettyPrinter.java b/modules/common/src/flex/messaging/util/PrettyPrinter.java
index 1f169db..d0f9de0 100644
--- a/modules/common/src/flex/messaging/util/PrettyPrinter.java
+++ b/modules/common/src/flex/messaging/util/PrettyPrinter.java
@@ -20,7 +20,7 @@ package flex.messaging.util;
  * Implementations convert Object graphs to Strings for
  * logging and debugging.
  *
- * @exclude
+ *
  */
 public interface PrettyPrinter
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/util/PropertyStringResourceLoader.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/util/PropertyStringResourceLoader.java b/modules/common/src/flex/messaging/util/PropertyStringResourceLoader.java
index 2d3a440..21c2f59 100644
--- a/modules/common/src/flex/messaging/util/PropertyStringResourceLoader.java
+++ b/modules/common/src/flex/messaging/util/PropertyStringResourceLoader.java
@@ -40,7 +40,7 @@ import flex.messaging.log.LogCategories;
  * </p>
  *
  * @see MessageFormat
- * @exclude
+ *
  */
 public class PropertyStringResourceLoader implements ResourceLoader
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/util/ResourceLoader.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/util/ResourceLoader.java b/modules/common/src/flex/messaging/util/ResourceLoader.java
index 0f032ed..e980f4b 100644
--- a/modules/common/src/flex/messaging/util/ResourceLoader.java
+++ b/modules/common/src/flex/messaging/util/ResourceLoader.java
@@ -22,7 +22,7 @@ import java.util.Map;
 /**
  * The root interface for classes that provide access to localized resources.
  *
- * @exclude
+ *
  */
 public interface ResourceLoader
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/common/src/flex/messaging/util/StringUtils.java
----------------------------------------------------------------------
diff --git a/modules/common/src/flex/messaging/util/StringUtils.java b/modules/common/src/flex/messaging/util/StringUtils.java
index 8ed9720..5a33f2e 100644
--- a/modules/common/src/flex/messaging/util/StringUtils.java
+++ b/modules/common/src/flex/messaging/util/StringUtils.java
@@ -28,7 +28,7 @@ import javax.xml.transform.stream.StreamResult;
 import javax.xml.transform.stream.StreamSource;
 
 /**
- * @exclude
+ *
  */
 public class StringUtils
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/management/BaseControl.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/management/BaseControl.java b/modules/core/src/flex/management/BaseControl.java
index 8babe3f..b26b909 100644
--- a/modules/core/src/flex/management/BaseControl.java
+++ b/modules/core/src/flex/management/BaseControl.java
@@ -487,7 +487,7 @@ public abstract class BaseControl implements BaseControlMBean,
     }
 
     /**
-     * @exclude Returns the difference between a start and end timestamps in
+     * Returns the difference between a start and end timestamps in
      *          minutes. Differences of less than one minute are rounded up to
      *          one minute to avoid frequency calculations reporting infinite
      *          message frequencies.

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/management/runtime/AdminConsoleDisplayRegistrar.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/management/runtime/AdminConsoleDisplayRegistrar.java b/modules/core/src/flex/management/runtime/AdminConsoleDisplayRegistrar.java
index dd85000..f16dbce 100644
--- a/modules/core/src/flex/management/runtime/AdminConsoleDisplayRegistrar.java
+++ b/modules/core/src/flex/management/runtime/AdminConsoleDisplayRegistrar.java
@@ -23,7 +23,7 @@ import java.util.HashMap;
 import flex.management.BaseControl;
 
 /**
- * @exclude
+ *
  */
 public class AdminConsoleDisplayRegistrar extends BaseControl implements AdminConsoleDisplayRegistrarMBean
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/management/runtime/AdminConsoleDisplayRegistrarMBean.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/management/runtime/AdminConsoleDisplayRegistrarMBean.java b/modules/core/src/flex/management/runtime/AdminConsoleDisplayRegistrarMBean.java
index fd10182..be7b36a 100644
--- a/modules/core/src/flex/management/runtime/AdminConsoleDisplayRegistrarMBean.java
+++ b/modules/core/src/flex/management/runtime/AdminConsoleDisplayRegistrarMBean.java
@@ -21,7 +21,7 @@ import java.io.IOException;
 import flex.management.BaseControlMBean;
 
 /**
- * @exclude
+ *
  */
 public interface AdminConsoleDisplayRegistrarMBean extends BaseControlMBean
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/management/runtime/messaging/client/FlexClientManagerControl.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/management/runtime/messaging/client/FlexClientManagerControl.java b/modules/core/src/flex/management/runtime/messaging/client/FlexClientManagerControl.java
index 0b24070..273da33 100644
--- a/modules/core/src/flex/management/runtime/messaging/client/FlexClientManagerControl.java
+++ b/modules/core/src/flex/management/runtime/messaging/client/FlexClientManagerControl.java
@@ -21,7 +21,7 @@ import flex.management.runtime.AdminConsoleTypes;
 import flex.messaging.client.FlexClientManager;
 
 /**
- * @exclude
+ *
  */
 public class FlexClientManagerControl extends BaseControl implements FlexClientManagerControlMBean
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/AbstractConnectionAwareSession.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/AbstractConnectionAwareSession.java b/modules/core/src/flex/messaging/AbstractConnectionAwareSession.java
index 95bed9b..6c93dc1 100644
--- a/modules/core/src/flex/messaging/AbstractConnectionAwareSession.java
+++ b/modules/core/src/flex/messaging/AbstractConnectionAwareSession.java
@@ -19,7 +19,7 @@ package flex.messaging;
 import java.util.concurrent.CopyOnWriteArrayList;
 
 /**
- * @exclude
+ *
  * Abstract base class for <tt>ConnectionAwareSession</tt> implementations.
  * Provides support for registering <tt>FlexSessionConnectivityListener</tt>s
  * along with protected methods to notify registered listeners of <tt>FlexSessionConnectivityEvent</tt>s.
@@ -33,7 +33,7 @@ public abstract class AbstractConnectionAwareSession extends FlexSession impleme
     //--------------------------------------------------------------------------
 
     /**
-     * @exclude
+     *
      * Constructs a new instance.
      *
      * @param sessionProvider The provider that instantiated this instance.

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/AbstractFlexSessionProvider.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/AbstractFlexSessionProvider.java b/modules/core/src/flex/messaging/AbstractFlexSessionProvider.java
index 4b57518..07c17be 100644
--- a/modules/core/src/flex/messaging/AbstractFlexSessionProvider.java
+++ b/modules/core/src/flex/messaging/AbstractFlexSessionProvider.java
@@ -19,7 +19,7 @@ package flex.messaging;
 import flex.messaging.config.ConfigMap;
 
 /**
- * @exclude
+ *
  * Base for FlexSessionProvider implementations.
  * Providers are protocol-specific factories for concrete FlexSession implementations.
  * They are registered with a FlexSessionManager, which acts as the central point of control

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/FlexContext.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/FlexContext.java b/modules/core/src/flex/messaging/FlexContext.java
index eb8e42f..8d85cb3 100644
--- a/modules/core/src/flex/messaging/FlexContext.java
+++ b/modules/core/src/flex/messaging/FlexContext.java
@@ -55,7 +55,7 @@ public class FlexContext
 
     /**
      * Users should not call this.
-     * @exclude
+     *
      */
     public static void setThreadLocalObjects(FlexClient flexClient,
                                              FlexSession session,
@@ -78,7 +78,7 @@ public class FlexContext
 
     /**
      * Users should not call this.
-     * @exclude
+     *
      */
     public static void setThreadLocalObjects(FlexClient flexClient, FlexSession session, MessageBroker broker)
     {
@@ -87,7 +87,7 @@ public class FlexContext
 
     /**
      * Users should not call this.
-     * @exclude
+     *
      */
     public static void clearThreadLocalObjects()
     {
@@ -121,7 +121,7 @@ public class FlexContext
 
     /**
      * Users should not call this.
-     * @exclude
+     *
      */
     public static void setThreadLocalHttpRequest(HttpServletRequest value)
     {
@@ -147,7 +147,7 @@ public class FlexContext
 
     /**
      * Users should not call this.
-     * @exclude
+     *
      */
     public static void setThreadLocalHttpResponse(HttpServletResponse value)
     {
@@ -173,7 +173,7 @@ public class FlexContext
 
     /**
      * Users should not call this.
-     * @exclude
+     *
      */
     public static void setThreadLocalTunnelHttpRequest(HttpServletRequest value)
     {
@@ -202,7 +202,7 @@ public class FlexContext
 
     /**
      * Users should not call this.
-     * @exclude
+     *
      */
     public static void setThreadLocalServletConfig(ServletConfig value)
     {
@@ -240,7 +240,7 @@ public class FlexContext
 
     /**
      * Users should not call this.
-     * @exclude
+     *
      */
     public static void setThreadLocalFlexClient(FlexClient flexClient)
     {
@@ -264,7 +264,7 @@ public class FlexContext
 
     /**
      * Users should not call this.
-     * @exclude
+     *
      */
     public static void setThreadLocalSession(FlexSession session)
     {
@@ -280,7 +280,7 @@ public class FlexContext
     /**
      * The MessageBroker for the current request.  Not available for users.
      *
-     * @exclude
+     *
      */
     public static MessageBroker getMessageBroker()
     {
@@ -289,7 +289,7 @@ public class FlexContext
 
     /**
      * Users should not call this.
-     * @exclude
+     *
      */
     public static void setThreadLocalMessageBroker(MessageBroker value)
     {
@@ -308,7 +308,7 @@ public class FlexContext
 
     /**
      * The Endpoint for the current message. Not available for users.
-     * @exclude
+     *
      */
     public static Endpoint getEndpoint()
     {
@@ -317,7 +317,7 @@ public class FlexContext
 
     /**
      * Users should not call this.
-     * @exclude
+     *
      */
     public static void setThreadLocalEndpoint(Endpoint value)
     {
@@ -332,7 +332,7 @@ public class FlexContext
 
     /**
      * Users should not call this.
-     * @exclude
+     *
      */
     public static MessageRoutedNotifier getMessageRoutedNotifier()
     {
@@ -341,7 +341,7 @@ public class FlexContext
 
     /**
      * Users should not call this.
-     * @exclude
+     *
      */
     public static void setMessageRoutedNotifier(MessageRoutedNotifier value)
     {
@@ -371,7 +371,7 @@ public class FlexContext
      *
      * @param value True if the message came from a peer; otherwise false.
      *
-     * @exclude
+     *
      */
     public static void setMessageFromPeer(boolean value)
     {
@@ -383,7 +383,7 @@ public class FlexContext
 
     /**
      * Users should not call this.
-     * @exclude
+     *
      */
     public static boolean isPerClientAuthentication()
     {
@@ -430,7 +430,7 @@ public class FlexContext
     }
 
     /**
-     * @exclude
+     *
      * Create the static thread local storage.
      */
     public static void createThreadLocalObjects()
@@ -451,7 +451,7 @@ public class FlexContext
     }
 
     /**
-     * @exclude
+     *
      * Destroy the static thread local storage.
      * Call ONLY on shutdown
      */

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/FlexSession.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/FlexSession.java b/modules/core/src/flex/messaging/FlexSession.java
index e570b16..b01ebe1 100644
--- a/modules/core/src/flex/messaging/FlexSession.java
+++ b/modules/core/src/flex/messaging/FlexSession.java
@@ -50,7 +50,7 @@ public abstract class FlexSession extends TimeoutAbstractObject implements FlexC
     public static final String FLEX_SESSION_LOG_CATEGORY = LogCategories.ENDPOINT_FLEXSESSION;
 
     /**
-     * @exclude
+     *
      */
     public static final int MAX_CONNECTIONS_PER_SESSION_UNLIMITED = -1;
 
@@ -77,7 +77,7 @@ public abstract class FlexSession extends TimeoutAbstractObject implements FlexC
     //--------------------------------------------------------------------------
 
     /**
-     * @exclude
+     *
      * @deprecated Post 2.6.1 releases require use of the constructor that takes an <tt>AbstractFlexSessionProvider</tt> argument.
      */
     public FlexSession()
@@ -86,7 +86,7 @@ public abstract class FlexSession extends TimeoutAbstractObject implements FlexC
     }
 
     /**
-     * @exclude
+     *
      * Constructs a new FlexSession instance.
      *
      * @param sessionProvider The provider that instantiated this instance.
@@ -197,7 +197,7 @@ public abstract class FlexSession extends TimeoutAbstractObject implements FlexC
     //----------------------------------
 
     /**
-     * @exclude
+     *
      * Used internally to manage async long-polls; not for public use.
      *
      * A map of endpoint to async poll objects that keeps track of what
@@ -221,7 +221,7 @@ public abstract class FlexSession extends TimeoutAbstractObject implements FlexC
     private final AbstractFlexSessionProvider sessionProvider;
 
     /**
-     * @exclude
+     *
      * Returns the session provider that created this instance.
      *
      * @return The session provider that created this instance.
@@ -281,7 +281,7 @@ public abstract class FlexSession extends TimeoutAbstractObject implements FlexC
     //----------------------------------
 
     /**
-     * @exclude
+     *
      * Used internally by streaming endpoints to enforce session level streaming
      * connection limits; not for public use.
      * This flag is volatile to allow for consistent reads across thread without
@@ -294,7 +294,7 @@ public abstract class FlexSession extends TimeoutAbstractObject implements FlexC
     //----------------------------------
 
     /**
-     * @exclude
+     *
      * Used internally by streaming and long polling endpoints to enforce session
      * level streaming connection limits; not for public use. Default value is -1
      * (limitless)
@@ -306,7 +306,7 @@ public abstract class FlexSession extends TimeoutAbstractObject implements FlexC
     //----------------------------------
 
     /**
-     * @exclude
+     *
      * Used internally by streaming and long polling endpoints to enforce
      * session level streaming connection limits; not for public use.
      *
@@ -326,12 +326,12 @@ public abstract class FlexSession extends TimeoutAbstractObject implements FlexC
     //----------------------------------
 
     /**
-     * @exclude
+     *
      */
     private boolean useSmallMessages;
 
     /**
-     * @exclude
+     *
      * Determines whether the server can attempt to send small messages
      * for those messages that have a small form. This setting can be overridden
      * by an endpoint's enableSmallMessages switch which controls whether
@@ -345,7 +345,7 @@ public abstract class FlexSession extends TimeoutAbstractObject implements FlexC
     }
 
     /**
-     * @exclude
+     *
      */
     public void setUseSmallMessages(boolean value)
     {
@@ -357,7 +357,7 @@ public abstract class FlexSession extends TimeoutAbstractObject implements FlexC
     //----------------------------------
 
     /**
-     * @exclude
+     *
      * Used internally to manage wait()-based long-polls; not for public use.
      *
      * This is the monitor that a request handling thread associated with this
@@ -465,7 +465,7 @@ public abstract class FlexSession extends TimeoutAbstractObject implements FlexC
     }
 
     /**
-     * @exclude
+     *
      * Implements MessageClientListener.
      * Handling created events is a no-op.
      *
@@ -474,7 +474,7 @@ public abstract class FlexSession extends TimeoutAbstractObject implements FlexC
     public void messageClientCreated(MessageClient messageClient) {}
 
     /**
-     * @exclude
+     *
      * Implements MessageClientListener.
      * Notification that an associated MessageClient was destroyed.
      *
@@ -486,7 +486,7 @@ public abstract class FlexSession extends TimeoutAbstractObject implements FlexC
     }
 
     /**
-     * @exclude
+     *
      * FlexClient invokes this to determine whether the session can be used to push messages
      * to the client.
      *
@@ -495,7 +495,7 @@ public abstract class FlexSession extends TimeoutAbstractObject implements FlexC
     public abstract boolean isPushSupported();
 
     /**
-     * @exclude
+     *
      * FlexClient invokes this to push a message to a remote client.
      *
      * @param message The message to push.
@@ -836,7 +836,7 @@ public abstract class FlexSession extends TimeoutAbstractObject implements FlexC
     }
 
     /**
-     * @exclude
+     *
      * Implements FlexClientListener interface.
      * Notification that a FlexClient was created.
      * This is a no-op because the FlexSession is never added as a static FlexClient created listener
@@ -848,7 +848,7 @@ public abstract class FlexSession extends TimeoutAbstractObject implements FlexC
     public void clientCreated(FlexClient flexClient) {}
 
     /**
-     * @exclude
+     *
      * Implements FlexClientListener interface.
      * Notification that an associated FlexClient was destroyed.
      *
@@ -860,7 +860,7 @@ public abstract class FlexSession extends TimeoutAbstractObject implements FlexC
     }
 
     /**
-     * @exclude
+     *
      * Used internally to associate a FlexClient with the FlexSession.
      *
      * @param flexClient The FlexClient to assocaite with the session.
@@ -875,7 +875,7 @@ public abstract class FlexSession extends TimeoutAbstractObject implements FlexC
     }
 
     /**
-     * @exclude
+     *
      * Used internally to disassociate a FlexClient from the FlexSession.
      *
      * @param flexClient The FlexClient to disassociate from the session.
@@ -890,7 +890,7 @@ public abstract class FlexSession extends TimeoutAbstractObject implements FlexC
     }
 
     /**
-     * @exclude
+     *
      * Used internally to associate a MessagClient (subscription) with the FlexSession.
      *
      * @param messageClient The MessageClient to associate with the session.
@@ -911,7 +911,7 @@ public abstract class FlexSession extends TimeoutAbstractObject implements FlexC
     }
 
     /**
-     * @exclude
+     *
      * Used internally to disassociate a MessageClient (subscription) from a FlexSession.
      *
      * @param messageClient The MessageClient to disassociate from the session.

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/FlexSessionConnectivityEvent.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/FlexSessionConnectivityEvent.java b/modules/core/src/flex/messaging/FlexSessionConnectivityEvent.java
index cb4f84d..4f1e9bd 100644
--- a/modules/core/src/flex/messaging/FlexSessionConnectivityEvent.java
+++ b/modules/core/src/flex/messaging/FlexSessionConnectivityEvent.java
@@ -24,7 +24,7 @@ import java.util.EventObject;
 public class FlexSessionConnectivityEvent extends EventObject
 {
     /**
-     * @exclude
+     *
      */
     private static final long serialVersionUID = 8622680412552475829L;
 

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/FlexSessionManager.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/FlexSessionManager.java b/modules/core/src/flex/messaging/FlexSessionManager.java
index d7f246f..ffdbc10 100644
--- a/modules/core/src/flex/messaging/FlexSessionManager.java
+++ b/modules/core/src/flex/messaging/FlexSessionManager.java
@@ -21,7 +21,7 @@ import flex.messaging.log.LogCategories;
 import java.util.concurrent.ConcurrentHashMap;
 
 /**
- * @exclude
+ *
  * Manages FlexSession instances for a MessageBroker. 
  */
 public class FlexSessionManager extends ManageableComponent
@@ -37,7 +37,7 @@ public class FlexSessionManager extends ManageableComponent
     //--------------------------------------------------------------------------
     
     /**
-     * @exclude
+     *
      * Constructs a <tt>FlexSessionManager</tt> for the passed <tt>MessageBroker</tt>.
      * 
      * @param broker The root <tt>MessageBroker</tt> using this <tt>FlexSessionManager</tt>.
@@ -48,7 +48,7 @@ public class FlexSessionManager extends ManageableComponent
     }
     
     /**
-     * @exclude
+     *
      * Constructs a <tt>FlexSessionManager</tt> for the passed <tt>MessageBroker</tt> and optionally enables management.
      * 
      * @param enableManagement <code>true</code> if the <tt>FlexSessionManager</tt>

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/HttpFlexSession.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/HttpFlexSession.java b/modules/core/src/flex/messaging/HttpFlexSession.java
index 5ec05f3..6b47cb6 100644
--- a/modules/core/src/flex/messaging/HttpFlexSession.java
+++ b/modules/core/src/flex/messaging/HttpFlexSession.java
@@ -49,7 +49,7 @@ public class HttpFlexSession extends FlexSession
     //--------------------------------------------------------------------------
 
     /**
-     * @exclude
+     *
      * Not for public use. This constructor is used to create an instance of this class that
      * will operate as a javax.servlet.http.HttpSessionListener registered in web.xml.
      */
@@ -57,7 +57,7 @@ public class HttpFlexSession extends FlexSession
     {}
 
     /**
-     * @exclude
+     *
      * Not for public use. Constructs new instances that effectively wrap pre-existing JEE HttpSession instances.
      */
     public HttpFlexSession(HttpFlexSessionProvider provider) 
@@ -125,7 +125,7 @@ public class HttpFlexSession extends FlexSession
     /* package-private */ HttpSession httpSession;
 
     /**
-     * @exclude
+     *
      * Static lock for creating httpSessionToFlexSession map
      */
     public static final Object mapLock = new Object();
@@ -304,7 +304,7 @@ public class HttpFlexSession extends FlexSession
     }
 
     /**
-     * @exclude
+     *
      * Used by Http endpoints when they receive notification from a client that it has
      * disconnected its channel.
      * Supports invalidating the HttpFlexSession and underlying JEE HttpSession without
@@ -400,7 +400,7 @@ public class HttpFlexSession extends FlexSession
     }
 
     /**
-     * @exclude
+     *
      * FlexClient invokes this to determine whether the session can be used to push messages
      * to the client.
      *
@@ -562,7 +562,7 @@ public class HttpFlexSession extends FlexSession
     }
 
     /**
-     * @exclude
+     *
      * Invoked by HttpSessionListener or binding listener on HttpSession invalidation to invalidate the wrapping
      * FlexSession.
      */

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/MessageBroker.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/MessageBroker.java b/modules/core/src/flex/messaging/MessageBroker.java
index 7e501c7..c14961e 100644
--- a/modules/core/src/flex/messaging/MessageBroker.java
+++ b/modules/core/src/flex/messaging/MessageBroker.java
@@ -150,7 +150,7 @@ public class MessageBroker extends ManageableComponent
     //--------------------------------------------------------------------------
 
     /**
-     * @exclude
+     *
      * Create a MessageBroker. This constructor will
      * establish collections for routers, endpoints,
      * and services.
@@ -260,7 +260,7 @@ public class MessageBroker extends ManageableComponent
      * Sets the id of the <code>MessageBroker</code>. If id is null, uses the
      * default broker id.
      *
-     * @exclude
+     *
      */
     @Override public void setId(String id)
     {
@@ -300,7 +300,7 @@ public class MessageBroker extends ManageableComponent
 
     /**
      * Start the message broker's endpoints and services.
-     * @exclude
+     *
      */
     @Override public void start()
     {
@@ -365,7 +365,7 @@ public class MessageBroker extends ManageableComponent
 
     /**
      * Stop the broker's endpoints, clusters, and services.
-     * @exclude
+     *
      */
     @Override public void stop()
     {
@@ -515,7 +515,7 @@ public class MessageBroker extends ManageableComponent
 
     /**
      * This interface is being kept for backwards compatibility.
-     * @exclude
+     *
      */
     public interface InternalPathResolver extends PathResolver
     {
@@ -529,7 +529,7 @@ public class MessageBroker extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      * Add a <code>Server</code> to the broker's collection.
      *
      * @param server <code>Server</code> to be added.
@@ -572,7 +572,7 @@ public class MessageBroker extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      * Returns the <code>Server</code> with the specified id.
      *
      * @param id The id of the <code>Server</code>/
@@ -585,7 +585,7 @@ public class MessageBroker extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      * Stops and removes the <code>Server</code> from the set of shared servers managed by the <code>MessageBroker</code>.
      *
      * @param id The id of the <code>Server</code> to remove.
@@ -603,7 +603,7 @@ public class MessageBroker extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      * Creates an <code>Endpoint</code> instance, sets its id and url.
      * It further sets the endpoint manageable if the <code>MessageBroker</code>
      * is manageable, and assigns its <code>MessageBroker</code> to the
@@ -629,7 +629,7 @@ public class MessageBroker extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      * Add an endpoint to the broker's collection. Broker will accept the endpoint
      * to be added only if the endpoint is not null, it does not have null id or
      * url, and it does not have the same id or url as another endpoint.
@@ -678,7 +678,7 @@ public class MessageBroker extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      * Returns the <code>Endpoint</code> with the specified id.
      *
      * @param id The id of the <code>Endpoint</code>/
@@ -691,7 +691,7 @@ public class MessageBroker extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      * Retrieve the map of all endpoints in this broker.
      */
     public Map<String, Endpoint> getEndpoints()
@@ -700,7 +700,7 @@ public class MessageBroker extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      * Retrieve an endpoint based on a requested URL path. Two endpoints should not be
      * registered to the same path.
      */
@@ -721,7 +721,7 @@ public class MessageBroker extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      * Removes an endpoint from the <code>MessageBroker</code>.
      *
      * @param id The id of the endpoint.
@@ -891,7 +891,7 @@ public class MessageBroker extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      * Returns a <tt>ConfigMap</tt> of service and channel properties that the client
      * needs.
      * The <tt>allDestinations</tt> flag controls whether configuration for all
@@ -1675,7 +1675,7 @@ public class MessageBroker extends ManageableComponent
      * Services call this method in order to send a message
      * to a FlexClient.
      *
-     * @exclude
+     *
      */
     public void routeMessageToMessageClient(Message message, MessageClient messageClient)
     {
@@ -1704,7 +1704,7 @@ public class MessageBroker extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      * Check that the destination permits access over the endpoint, the security
      * constraint of the destination permits the operation, and the service and
      * the destination the message is targeting are running,
@@ -1736,7 +1736,7 @@ public class MessageBroker extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      * Verify that this destination permits access over this endpoint.
      *
      * @param message The incoming message.
@@ -1759,7 +1759,7 @@ public class MessageBroker extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      * Returns the logging category to use for a given message.
      */
     public String getLogCategory(Message message)
@@ -1780,7 +1780,7 @@ public class MessageBroker extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      * Sets the class loader used by the system to load user defined classes.
      *
      * @param classLoader The class loader used by the system to loader user defiend classes.
@@ -1791,7 +1791,7 @@ public class MessageBroker extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      * Used internally by AbstractService to check existence of destination and service id
      * mapping in the destinationToService map.
      *
@@ -1815,7 +1815,7 @@ public class MessageBroker extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      * Used internally by AbstractService to add destination and service id
      * mapping to destinationToService map.
      *
@@ -1836,7 +1836,7 @@ public class MessageBroker extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      * Used internally by AbstractService to remove destination and service id
      * mapping from destinationToService map.
      *
@@ -1848,7 +1848,7 @@ public class MessageBroker extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      * Looks up and returns a destination by id; removing the need to know which service
      * a destination is registered for.
      *
@@ -1907,7 +1907,7 @@ public class MessageBroker extends ManageableComponent
     //--------------------------------------------------------------------------
 
     /**
-     * @exclude
+     *
      * Utility method to make sure that message has an assigned messageId.
      */
     protected void checkMessageId(Message message)
@@ -1921,7 +1921,7 @@ public class MessageBroker extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      * Check the headers for the message for the RemoteCredentials.
      *
      * @param service
@@ -2006,7 +2006,7 @@ public class MessageBroker extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      * This method was added so that Spring-BlazeDS Integration 1.0.2 works with latest BlazeDS binaries
      * Internally, this method simply invokes the setServletContext(...) method
      */
@@ -2028,7 +2028,7 @@ public class MessageBroker extends ManageableComponent
     /**
      * Start all of the broker's endpoints.
      *
-     * @exclude
+     *
      */
     protected void startEndpoints()
     {
@@ -2043,7 +2043,7 @@ public class MessageBroker extends ManageableComponent
     /**
      * Stop all of the broker's endpoints.
      *
-     * @exclude
+     *
      */
     protected void stopEndpoints()
     {
@@ -2062,7 +2062,7 @@ public class MessageBroker extends ManageableComponent
     //--------------------------------------------------------------------------
 
     /**
-     * @exclude
+     *
      */
     private void checkEndpointUrl(String id, String endpointUrl)
     {
@@ -2107,7 +2107,7 @@ public class MessageBroker extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      * Matches the current &quot;servlet + pathinfo&quot; to a list of channels registered
      * in the services configuration file, independent of context root.
      *
@@ -2198,7 +2198,7 @@ public class MessageBroker extends ManageableComponent
     /**
      * Start all of the broker's services.
      *
-     * @exclude
+     *
      */
     private void startServices()
     {
@@ -2227,7 +2227,7 @@ public class MessageBroker extends ManageableComponent
     /**
      * Stop all of the broker's services.
      *
-     * @exclude
+     *
      */
     private void stopServices()
     {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/MessageBrokerServlet.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/MessageBrokerServlet.java b/modules/core/src/flex/messaging/MessageBrokerServlet.java
index b86bb9a..79d2bfd 100644
--- a/modules/core/src/flex/messaging/MessageBrokerServlet.java
+++ b/modules/core/src/flex/messaging/MessageBrokerServlet.java
@@ -58,7 +58,7 @@ import java.util.concurrent.ConcurrentHashMap;
  * does not occur for non-http endpoints, such as the rtmp endpoint.
  *
  * @see flex.messaging.MessageBroker
- * @exclude
+ *
  */
 public class MessageBrokerServlet extends HttpServlet
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/MessageClient.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/MessageClient.java b/modules/core/src/flex/messaging/MessageClient.java
index ea19eda..ccb28b0 100644
--- a/modules/core/src/flex/messaging/MessageClient.java
+++ b/modules/core/src/flex/messaging/MessageClient.java
@@ -164,7 +164,7 @@ public class MessageClient extends TimeoutAbstractObject implements Serializable
     //--------------------------------------------------------------------------
 
     /**
-     * @exclude
+     *
      * Constructs a new MessageClient for local use.
      *
      * @param clientId The clientId for the MessageClient.
@@ -177,7 +177,7 @@ public class MessageClient extends TimeoutAbstractObject implements Serializable
     }
 
     /**
-     * @exclude
+     *
      * Constructs a new MessageClient.
      *
      * @param clientId The clientId for the MessageClient.
@@ -409,7 +409,7 @@ public class MessageClient extends TimeoutAbstractObject implements Serializable
     }
 
     /**
-     * @exclude
+     *
      * This is used for FlexClient outbound queue management. When a MessageClient is invalidated
      * if it is attempting to notify the client, then we must leave the outbound queue containing
      * the notification in place. Otherwise, any messages queued for the subscription may be
@@ -421,7 +421,7 @@ public class MessageClient extends TimeoutAbstractObject implements Serializable
     }
 
     /**
-     * @exclude
+     *
      * This is set to true when the MessageClient is invalidated due to the client
      * channel the subscription was established over disconnecting.
      * It allows the FlexClient class to cleanup the outbound queue for the channel's
@@ -434,7 +434,7 @@ public class MessageClient extends TimeoutAbstractObject implements Serializable
     }
 
     /**
-     * @exclude
+     *
      */
     public boolean isClientChannelDisconnected()
     {
@@ -442,7 +442,7 @@ public class MessageClient extends TimeoutAbstractObject implements Serializable
     }
 
     /**
-     * @exclude
+     *
      * This is true when some code other than the SubscriptionManager
      * is maintaining subscriptions for this message client.  It ensures
      * that we have this MessageClient kept around until the session
@@ -454,7 +454,7 @@ public class MessageClient extends TimeoutAbstractObject implements Serializable
     }
 
     /**
-     * @exclude
+     *
      */
     public boolean isRegistered()
     {
@@ -502,7 +502,7 @@ public class MessageClient extends TimeoutAbstractObject implements Serializable
     }
 
     /**
-     * @exclude
+     *
      * Adds a subscription to the subscription set for this MessageClient.
      *
      * @param selector The selector expression used for the subscription.
@@ -527,7 +527,7 @@ public class MessageClient extends TimeoutAbstractObject implements Serializable
     }
 
     /**
-     * @exclude
+     *
      * Registers  the subscription with the outbound queue processor's throttle
      * manager, if one exists.
      *
@@ -562,7 +562,7 @@ public class MessageClient extends TimeoutAbstractObject implements Serializable
     }
 
     /**
-     * @exclude
+     *
      * Removes a subscription from the subscription set for this MessageClient.
      *
      * @param selector The selector expression for the subscription.
@@ -589,7 +589,7 @@ public class MessageClient extends TimeoutAbstractObject implements Serializable
     }
 
     /**
-     * @exclude
+     *
      * We use the same MessageClient for more than one subscription with different
      * selection criteria.  This tracks the number of subscriptions that are active
      * so that we know when we are finished.
@@ -603,7 +603,7 @@ public class MessageClient extends TimeoutAbstractObject implements Serializable
     }
 
     /**
-     * @exclude
+     *
      * Decrements the numReferences variable and returns true if this was the last reference.
      */
     public boolean decrementReferences()
@@ -626,7 +626,7 @@ public class MessageClient extends TimeoutAbstractObject implements Serializable
     }
 
     /**
-     * @exclude
+     *
      * Invoked by SubscriptionManager once the subscription state is setup completely
      * for the MessageClient..
      */
@@ -642,7 +642,7 @@ public class MessageClient extends TimeoutAbstractObject implements Serializable
     }
 
     /**
-     * @exclude
+     *
      * Invoked by SubscriptionManager while handling a subscribe request.
      * If the request is updating an existing subscription the 'push' state in the associated FlexClient
      * may need to be updated to ensure that the correct endpoint is used for this subscription.
@@ -696,7 +696,7 @@ public class MessageClient extends TimeoutAbstractObject implements Serializable
     }
 
     /**
-     * @exclude
+     *
      * Used to test whether this client should receive this message
      * based on the list of subscriptions we have recorded for it.
      * It must match both the subtopic and the selector expression.
@@ -888,7 +888,7 @@ public class MessageClient extends TimeoutAbstractObject implements Serializable
     }
 
     /**
-     * @exclude
+     *
      * Compares this MessageClient to the specified object. The result is true if
      * the argument is not null and is a MessageClient instance with a matching
      * clientId value.
@@ -908,7 +908,7 @@ public class MessageClient extends TimeoutAbstractObject implements Serializable
     }
 
     /**
-     * @exclude
+     *
      * Returns the hash code for this MessageClient. The returned value is
      * the hash code for the MessageClient's clientId property.
      *
@@ -921,7 +921,7 @@ public class MessageClient extends TimeoutAbstractObject implements Serializable
     }
 
     /**
-     * @exclude
+     *
      * The String representation of this MessageClient is returned (its clientId value).
      *
      * @return The clientId value for this MessageClient.
@@ -937,7 +937,7 @@ public class MessageClient extends TimeoutAbstractObject implements Serializable
     //----------------------------------
 
     /**
-     * @exclude
+     *
      * Implements TimeoutCapable.
      * This method returns the timeout value configured for the MessageClient's destination.
      */
@@ -949,7 +949,7 @@ public class MessageClient extends TimeoutAbstractObject implements Serializable
     }
 
     /**
-     * @exclude
+     *
      * Implements TimeoutCapable.
      * This method is invoked when the MessageClient has timed out and it
      * invalidates the MessageClient.
@@ -960,7 +960,7 @@ public class MessageClient extends TimeoutAbstractObject implements Serializable
     }
 
     /**
-     * @exclude
+     *
      * Returns true if a timeout task is running for this MessageClient.
      */
     public boolean isTimingOut()
@@ -969,7 +969,7 @@ public class MessageClient extends TimeoutAbstractObject implements Serializable
     }
 
     /**
-     * @exclude
+     *
      * Records whether a timeout task is running for this MessageClient.
      */
     public void setTimingOut(boolean value)

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/MessageDestination.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/MessageDestination.java b/modules/core/src/flex/messaging/MessageDestination.java
index bd80b41..48ecc59 100644
--- a/modules/core/src/flex/messaging/MessageDestination.java
+++ b/modules/core/src/flex/messaging/MessageDestination.java
@@ -220,7 +220,7 @@ public class MessageDestination extends FactoryDestination
     //--------------------------------------------------------------------------
 
     /**
-     * @exclude
+     *
      * Returns a <tt>ConfigMap</tt> of destination properties that the client
      * needs. This includes properties from <code>super{@link #describeDestination(boolean)}</code>
      * and it also includes outbound throttling policy that the edge server might need.

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/MessageRoutedEvent.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/MessageRoutedEvent.java b/modules/core/src/flex/messaging/MessageRoutedEvent.java
index cc31778..397b261 100644
--- a/modules/core/src/flex/messaging/MessageRoutedEvent.java
+++ b/modules/core/src/flex/messaging/MessageRoutedEvent.java
@@ -21,7 +21,7 @@ import flex.messaging.messages.Message;
 import java.util.EventObject;
 
 /**
- * @exclude
+ *
  * This event indicates that the source message has been routed to the outbound message queues
  * for all target clients.
  * This can be used as the trigger for performing optimized IO to flush these queued messages to 
@@ -30,7 +30,7 @@ import java.util.EventObject;
 public class MessageRoutedEvent extends EventObject
 {
     /**
-     * @exclude
+     *
      */
     private static final long serialVersionUID = -3063794416424805005L;
 

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/MessageRoutedListener.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/MessageRoutedListener.java b/modules/core/src/flex/messaging/MessageRoutedListener.java
index 223cd3c..bf9a171 100644
--- a/modules/core/src/flex/messaging/MessageRoutedListener.java
+++ b/modules/core/src/flex/messaging/MessageRoutedListener.java
@@ -19,7 +19,7 @@ package flex.messaging;
 import java.util.EventListener;
 
 /**
- * @exclude
+ *
  * Provides notification for multicast message routing events to support optimized
  * asynchronous IO to the target remote hosts.
  */

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/MessageRoutedNotifier.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/MessageRoutedNotifier.java b/modules/core/src/flex/messaging/MessageRoutedNotifier.java
index ef27b32..f9aca87 100644
--- a/modules/core/src/flex/messaging/MessageRoutedNotifier.java
+++ b/modules/core/src/flex/messaging/MessageRoutedNotifier.java
@@ -21,7 +21,7 @@ import flex.messaging.messages.Message;
 import java.util.ArrayList;
 
 /**
- * @exclude
+ *
  * Supports registration and notification of <tt>MessageRoutedListener</tt>s.
  * An instance of this class is exposed by <tt>FlexContext</tt> while a message is
  * being routed, and once routing of the message to the outbound messages queues for

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/ServiceValidationListener.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/ServiceValidationListener.java b/modules/core/src/flex/messaging/ServiceValidationListener.java
index cb08fe1..d7f24f8 100644
--- a/modules/core/src/flex/messaging/ServiceValidationListener.java
+++ b/modules/core/src/flex/messaging/ServiceValidationListener.java
@@ -17,7 +17,7 @@
 package flex.messaging;
 
 /**
- * @exclude
+ *
  */
 public interface ServiceValidationListener
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/client/EndpointPushNotifier.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/client/EndpointPushNotifier.java b/modules/core/src/flex/messaging/client/EndpointPushNotifier.java
index 151699e..cd6db61 100644
--- a/modules/core/src/flex/messaging/client/EndpointPushNotifier.java
+++ b/modules/core/src/flex/messaging/client/EndpointPushNotifier.java
@@ -36,7 +36,7 @@ import flex.messaging.util.TimeoutAbstractObject;
 import flex.messaging.util.UUIDUtils;
 
 /**
- * @exclude
+ *
  * Instances of this class are used by endpoints that support streaming
  * outbound data to connected clients when the client is not polling and
  * the FlexSession representing the connection does not support push directly.
@@ -339,7 +339,7 @@ public class EndpointPushNotifier extends TimeoutAbstractObject implements Endpo
     }
 
     /**
-     * @exclude
+     *
      * Implements TimeoutCapable.
      * Determine the time, in milliseconds, that this object is allowed to idle
      * before having its timeout method invoked.
@@ -350,7 +350,7 @@ public class EndpointPushNotifier extends TimeoutAbstractObject implements Endpo
     }
 
     /**
-     * @exclude
+     *
      */
     public void messageClientCreated(MessageClient messageClient)
     {
@@ -358,7 +358,7 @@ public class EndpointPushNotifier extends TimeoutAbstractObject implements Endpo
     }
 
     /**
-     * @exclude
+     *
      */
     public void messageClientDestroyed(MessageClient messageClient)
     {
@@ -433,7 +433,7 @@ public class EndpointPushNotifier extends TimeoutAbstractObject implements Endpo
     }
 
     /**
-     * @exclude
+     *
      * Implements TimeoutCapable.
      * Inform the object that it has timed out.
      */


[3/4] flex-blazeds git commit: Removed all "exclude" javadoc annotations

Posted by cd...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/client/FlexClient.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/client/FlexClient.java b/modules/core/src/flex/messaging/client/FlexClient.java
index f6a4b59..9c6e4fe 100644
--- a/modules/core/src/flex/messaging/client/FlexClient.java
+++ b/modules/core/src/flex/messaging/client/FlexClient.java
@@ -65,7 +65,7 @@ public class FlexClient extends TimeoutAbstractObject implements FlexSessionList
     /**
      * This value is passed to the server in an initial client connect to
      * indicate that the client needs a server-assigned FlexClient Id.
-     * @exclude
+     *
      */
     public static final String NULL_FLEXCLIENT_ID = "nil";
 
@@ -134,7 +134,7 @@ public class FlexClient extends TimeoutAbstractObject implements FlexSessionList
     //--------------------------------------------------------------------------
 
     /**
-     * @exclude
+     *
      * Constructs a new FlexClient instance.
      *
      * @param manager The FlexClientManager managing this instance.
@@ -145,7 +145,7 @@ public class FlexClient extends TimeoutAbstractObject implements FlexSessionList
     }
 
     /**
-     * @exclude
+     *
      * Constructs a new FlexClient instance having the specified Id.
      *
      * @param manager The FlexClientManager managing this instance.
@@ -338,7 +338,7 @@ public class FlexClient extends TimeoutAbstractObject implements FlexSessionList
     }
 
     /**
-     * @exclude
+     *
      * Returns the push handler registered with the FlexClient with the supplied
      * endpoint id, or null if no push handler was registered with the FlexClient
      * for that endpoint.
@@ -358,7 +358,7 @@ public class FlexClient extends TimeoutAbstractObject implements FlexSessionList
     }
 
     /**
-     * @exclude
+     *
      * Returns the queue processor registered with the FlexClient with the supplied
      * endpoint id, or null if no queue processor was registered with the FlexClient
      * for that endpoint.
@@ -373,7 +373,7 @@ public class FlexClient extends TimeoutAbstractObject implements FlexSessionList
     }
     
     /**
-     * @exclude
+     *
      * Returns the endpoint queue registered with the FlexClient with the supplied
      * endpoint id, or null if no endpoint queue was registered with the FlexClient
      * for that endpoint.
@@ -475,7 +475,7 @@ public class FlexClient extends TimeoutAbstractObject implements FlexSessionList
     }
 
     /**
-     * @exclude
+     *
      *
      * Returns the principal associated with this client.  If the client has not
      * authenticated the principal will be null.  Should only be called from FlexContext
@@ -493,7 +493,7 @@ public class FlexClient extends TimeoutAbstractObject implements FlexSessionList
     }
 
     /**
-     * @exclude
+     *
      *
      * Should only be called from FlexContext and only if perClientAuthentication is used.
      * Not available to users.
@@ -710,7 +710,7 @@ public class FlexClient extends TimeoutAbstractObject implements FlexSessionList
     }
 
     /**
-     * @exclude
+     *
      * Implements TimeoutCapable.
      * Determine the time, in milliseconds, that this object is allowed to idle
      * before having its timeout method invoked.
@@ -722,7 +722,7 @@ public class FlexClient extends TimeoutAbstractObject implements FlexSessionList
     }
 
     /**
-     * @exclude
+     *
      * Implements MessageClientListener.
      * Handling created events is a no-op.
      *
@@ -731,7 +731,7 @@ public class FlexClient extends TimeoutAbstractObject implements FlexSessionList
     public void messageClientCreated(MessageClient messageClient) {}
 
     /**
-     * @exclude
+     *
      * Implements MessageClientListener.
      * Notification that an associated FlexSession was destroyed.
      *
@@ -743,7 +743,7 @@ public class FlexClient extends TimeoutAbstractObject implements FlexSessionList
     }
 
     /**
-     * @exclude
+     *
      * Poll for outbound messages for the FlexClient.
      * This method is only invoked by internal code while processing a client poll request; it
      * is not intended for general public use.
@@ -778,7 +778,7 @@ public class FlexClient extends TimeoutAbstractObject implements FlexSessionList
     }
 
     /**
-     * @exclude
+     *
      * Poll for outbound messages for the FlexClient and if no messages are available
      * immediately, store a reference to the passed async handler and call back when messages arrive.
      *
@@ -856,7 +856,7 @@ public class FlexClient extends TimeoutAbstractObject implements FlexSessionList
     }
 
     /**
-     * @exclude
+     *
      * Poll for outbound messages for the FlexClient and if no messages are available
      * immediately, put processing into a wait state until messages arrive.
      * This method is only invoked by internal code while processing a client poll request; it
@@ -1024,7 +1024,7 @@ public class FlexClient extends TimeoutAbstractObject implements FlexSessionList
     }
 
     /**
-     * @exclude
+     *
      * Poll for outbound messages for a specific MessageClient/Consumer.
      * This overload of poll() is only invoked when handling a Consumer.receive() request.
      *
@@ -1067,7 +1067,7 @@ public class FlexClient extends TimeoutAbstractObject implements FlexSessionList
     }
 
     /**
-     * @exclude
+     *
      * Push a message to the FlexClient.
      * The message is added to the outbound queue of messages for the client and
      * will be pushed if possible or retrieved via a client poll request.
@@ -1154,7 +1154,7 @@ public class FlexClient extends TimeoutAbstractObject implements FlexSessionList
     }
 
     /**
-     * @exclude
+     *
      * Registers an <tt>EndpointPushHandler</tt> for the specified endpoint to handle pushing messages
      * to remote clients.
      *
@@ -1180,7 +1180,7 @@ public class FlexClient extends TimeoutAbstractObject implements FlexSessionList
     }
 
     /**
-     * @exclude
+     *
      * Used internally to associate a FlexSession with this FlexClient.
      *
      * @param session The FlexSession to associate with this FlexClient.
@@ -1195,7 +1195,7 @@ public class FlexClient extends TimeoutAbstractObject implements FlexSessionList
     }
 
     /**
-     * @exclude
+     *
      * Used internally to associate a MessageClient with this FlexClient.
      *
      * @param messageClient The MessageClient to associate with this FlexClient.
@@ -1294,7 +1294,7 @@ public class FlexClient extends TimeoutAbstractObject implements FlexSessionList
     }
 
     /**
-     * @exclude
+     *
      * Implements FlexSessionListener interface.
      * Notification that a FlexSession was created.
      * This is a no-op because the FlexClient is never added as a static FlexSession created listener
@@ -1306,7 +1306,7 @@ public class FlexClient extends TimeoutAbstractObject implements FlexSessionList
     public void sessionCreated(FlexSession session) {}
 
     /**
-     * @exclude
+     *
      * Implements FlexSessionListener interface.
      * Notification that an associated FlexSession was destroyed.
      *
@@ -1378,7 +1378,7 @@ public class FlexClient extends TimeoutAbstractObject implements FlexSessionList
     }
 
     /**
-     * @exclude
+     *
      * Implements TimeoutCapable.
      * Inform the object that it has timed out.
      */
@@ -1388,7 +1388,7 @@ public class FlexClient extends TimeoutAbstractObject implements FlexSessionList
     }
 
     /**
-     * @exclude
+     *
      * Unregisters an <tt>EndpointPushHandler</tt> from the specified endpoint.
      *
      * @param handler The <tt>EndpointPushHandler</tt> to unregister.
@@ -1407,7 +1407,7 @@ public class FlexClient extends TimeoutAbstractObject implements FlexSessionList
     }
 
     /**
-     * @exclude
+     *
      * Used internally to disassociate a FlexSession from this FlexClient.
      *
      * @param session The FlexSession to disassociate from this FlexClient.
@@ -1425,7 +1425,7 @@ public class FlexClient extends TimeoutAbstractObject implements FlexSessionList
     }
 
     /**
-     * @exclude
+     *
      * Used internally to disassociate a MessageClient (subscription) from a FlexClient.
      *
      * @param messageClient The MessageClient to disassociate from the FlexClient.
@@ -2199,7 +2199,7 @@ public class FlexClient extends TimeoutAbstractObject implements FlexSessionList
     }
 
     /**
-     * @exclude
+     *
      * Helper class that stores per-endpoint outbound queue state including:
      * <ul>
      *   <li>flexClient - The <tt>FlexClient</tt> the queue is used by.</li>

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/client/FlexClientManager.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/client/FlexClientManager.java b/modules/core/src/flex/messaging/client/FlexClientManager.java
index 05c7d2c..943956d 100644
--- a/modules/core/src/flex/messaging/client/FlexClientManager.java
+++ b/modules/core/src/flex/messaging/client/FlexClientManager.java
@@ -36,7 +36,7 @@ import flex.messaging.util.TimeoutAbstractObject;
 import flex.messaging.util.TimeoutManager;
 
 /**
- * @exclude
+ *
  * Manages FlexClient instances for a MessageBroker.
  */
 public class FlexClientManager extends ManageableComponent
@@ -50,7 +50,7 @@ public class FlexClientManager extends ManageableComponent
     //--------------------------------------------------------------------------
 
     /**
-     * @exclude
+     *
      */
     public FlexClientManager()
     {
@@ -67,7 +67,7 @@ public class FlexClientManager extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      */
     public FlexClientManager(boolean enableManagement, MessageBroker mbroker)
     {
@@ -305,7 +305,7 @@ public class FlexClientManager extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      * Monitors an async poll for a FlexClient for timeout.
      *
      * @param asyncPollTimeout The async poll task to monitor for timeout.
@@ -316,7 +316,7 @@ public class FlexClientManager extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      * Monitors a scheduled flush for a FlexClient for timeout.
      *
      * @param scheduledFlushTimeout The schedule flush task to monitor for timeout.
@@ -395,7 +395,7 @@ public class FlexClientManager extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      * Removes a FlexClient from being managed by this manager.
      * This method is invoked by FlexClients when they are invalidated.
      *

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/client/FlexClientNotSubscribedException.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/client/FlexClientNotSubscribedException.java b/modules/core/src/flex/messaging/client/FlexClientNotSubscribedException.java
index 54d7a33..f5ffe18 100644
--- a/modules/core/src/flex/messaging/client/FlexClientNotSubscribedException.java
+++ b/modules/core/src/flex/messaging/client/FlexClientNotSubscribedException.java
@@ -20,12 +20,12 @@ import flex.messaging.MessageException;
 import flex.messaging.log.LogEvent;
 
 /**
- * @exclude
+ *
  */
 public class FlexClientNotSubscribedException extends MessageException
 {
     /**
-     * @exclude
+     *
      */
     private static final long serialVersionUID = 773524927178340950L;
 

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/client/FlexClientOutboundQueueProcessor.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/client/FlexClientOutboundQueueProcessor.java b/modules/core/src/flex/messaging/client/FlexClientOutboundQueueProcessor.java
index dd7df44..19cf19e 100644
--- a/modules/core/src/flex/messaging/client/FlexClientOutboundQueueProcessor.java
+++ b/modules/core/src/flex/messaging/client/FlexClientOutboundQueueProcessor.java
@@ -71,7 +71,7 @@ public class FlexClientOutboundQueueProcessor
     //--------------------------------------------------------------------------
 
     /**
-     * @exclude
+     *
      * Stores the Id for the outbound queue's endpoint.
      *
      * @param value The Id for the outbound queue's endpoint.
@@ -92,7 +92,7 @@ public class FlexClientOutboundQueueProcessor
     }
 
     /**
-     * @exclude
+     *
      * Sets the associated FlexClient.
      *
      * @param value The associated FlexClient.

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/cluster/BroadcastHandler.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/cluster/BroadcastHandler.java b/modules/core/src/flex/messaging/cluster/BroadcastHandler.java
index c8a5db4..f036622 100644
--- a/modules/core/src/flex/messaging/cluster/BroadcastHandler.java
+++ b/modules/core/src/flex/messaging/cluster/BroadcastHandler.java
@@ -19,7 +19,7 @@ package flex.messaging.cluster;
 import java.util.List;
 
 /**
- * @exclude
+ *
  * This interface represents a handler for a message broadcast by a Cluster.
  * Clusters broadcast messages across their physical nodes, and when they
  * receive those messages they locate a BroadcastHandler capable of handling

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/cluster/Cluster.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/cluster/Cluster.java b/modules/core/src/flex/messaging/cluster/Cluster.java
index 506bb19..eab1890 100644
--- a/modules/core/src/flex/messaging/cluster/Cluster.java
+++ b/modules/core/src/flex/messaging/cluster/Cluster.java
@@ -26,7 +26,7 @@ import flex.messaging.config.ConfigMap;
 import flex.messaging.log.LogCategories;
 
 /**
- * @exclude
+ *
  * Base interface for cluster implementations.
  */
 public abstract class Cluster

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/cluster/ClusterException.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/cluster/ClusterException.java b/modules/core/src/flex/messaging/cluster/ClusterException.java
index a7e1fe2..c0dc41d 100644
--- a/modules/core/src/flex/messaging/cluster/ClusterException.java
+++ b/modules/core/src/flex/messaging/cluster/ClusterException.java
@@ -19,7 +19,7 @@ package flex.messaging.cluster;
 import flex.messaging.MessageException;
 
 /**
- * @exclude
+ *
  * Exception type for cluster errors.
  */
 public class ClusterException extends MessageException

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/cluster/ClusterManager.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/cluster/ClusterManager.java b/modules/core/src/flex/messaging/cluster/ClusterManager.java
index 0e88fe1..07ef180 100644
--- a/modules/core/src/flex/messaging/cluster/ClusterManager.java
+++ b/modules/core/src/flex/messaging/cluster/ClusterManager.java
@@ -42,7 +42,7 @@ import flex.messaging.endpoints.Endpoint;
 import flex.messaging.util.ClassUtil;
 
 /**
- * @exclude
+ *
  * The manager of all clusters defined in services-config.xml, and the broker
  * for the clusters created for clustered destinations.
  */
@@ -578,7 +578,7 @@ public class ClusterManager
         Constructor clusterConstructor = null;
         try
         {
-            clusterConstructor = clusterClass.getConstructor(new Class[] {ClusterManager.class});
+            clusterConstructor = clusterClass.getConstructor(ClusterManager.class);
         }
         catch (Exception e)
         {
@@ -589,7 +589,7 @@ public class ClusterManager
         }
         try
         {
-            cluster = (Cluster)clusterConstructor.newInstance(new Object[] {this});
+            cluster = (Cluster)clusterConstructor.newInstance(this);
             cluster.setClusterPropertiesFile(propsFile);
             cluster.setURLLoadBalancing(cls.getURLLoadBalancing());
             cluster.initialize(clusterId, cls.getProperties());

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/cluster/ClusterMembershipListener.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/cluster/ClusterMembershipListener.java b/modules/core/src/flex/messaging/cluster/ClusterMembershipListener.java
index fd5b70d..302163e 100644
--- a/modules/core/src/flex/messaging/cluster/ClusterMembershipListener.java
+++ b/modules/core/src/flex/messaging/cluster/ClusterMembershipListener.java
@@ -25,7 +25,7 @@ import org.jgroups.MembershipListener;
 import org.jgroups.View;
 
 /**
- * @exclude
+ *
  * Clusters employ this Listener in order to respond to nodes which
  * join and abandon it. This class bridges the low-level protocol layer
  * to the more abstract logical cluster.

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/cluster/ClusterNode.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/cluster/ClusterNode.java b/modules/core/src/flex/messaging/cluster/ClusterNode.java
index 6fdd67e..6a0b64c 100644
--- a/modules/core/src/flex/messaging/cluster/ClusterNode.java
+++ b/modules/core/src/flex/messaging/cluster/ClusterNode.java
@@ -21,7 +21,7 @@ import java.util.Iterator;
 import java.util.Map;
 
 /**
- * @exclude
+ *
  * ClusterNode is an encapsulation for pairing a physical host and a logical
  * software group, which is in effect a mapping between a physical address used
  * by the cluster infrastructure and a service destination used by the message

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/cluster/RemoveNodeListener.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/cluster/RemoveNodeListener.java b/modules/core/src/flex/messaging/cluster/RemoveNodeListener.java
index fd8778d..05583c3 100644
--- a/modules/core/src/flex/messaging/cluster/RemoveNodeListener.java
+++ b/modules/core/src/flex/messaging/cluster/RemoveNodeListener.java
@@ -18,7 +18,7 @@ package flex.messaging.cluster;
 
 
 /**
- * @exclude
+ *
  * Called when a node leaves the cluster.  Note that for JGroups at least, this
  * callback should not execute any "long running" operations.  This is indirectly
  * called from the MembershipListener interface in JGroups.

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/config/ApacheXPathServerConfigurationParser.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/config/ApacheXPathServerConfigurationParser.java b/modules/core/src/flex/messaging/config/ApacheXPathServerConfigurationParser.java
index cb93f8e..29dd222 100644
--- a/modules/core/src/flex/messaging/config/ApacheXPathServerConfigurationParser.java
+++ b/modules/core/src/flex/messaging/config/ApacheXPathServerConfigurationParser.java
@@ -29,7 +29,7 @@ import javax.xml.transform.TransformerException;
  * sections of the document need to be parsed first.
  * </p>
  *
- * @exclude
+ *
  */
 public class ApacheXPathServerConfigurationParser extends ServerConfigurationParser
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/config/ConfigurationManager.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/config/ConfigurationManager.java b/modules/core/src/flex/messaging/config/ConfigurationManager.java
index 86a83d3..8f3f463 100644
--- a/modules/core/src/flex/messaging/config/ConfigurationManager.java
+++ b/modules/core/src/flex/messaging/config/ConfigurationManager.java
@@ -28,7 +28,7 @@ import flex.messaging.log.LogCategories;
  * a servlet init-param &quot;services.configuration.manager&quot;
  * to the MessageBrokerServlet.
  *
- * @exclude
+ *
  */
 public interface ConfigurationManager
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/config/FactorySettings.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/config/FactorySettings.java b/modules/core/src/flex/messaging/config/FactorySettings.java
index 65634fa..aec365e 100644
--- a/modules/core/src/flex/messaging/config/FactorySettings.java
+++ b/modules/core/src/flex/messaging/config/FactorySettings.java
@@ -23,7 +23,7 @@ import flex.messaging.util.ClassUtil;
  * The factory configuration defines a single factory in the flex
  * configuration file.
  *
- * @exclude
+ *
  */
 public class FactorySettings extends PropertiesSettings
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/config/FlexConfigurationManager.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/config/FlexConfigurationManager.java b/modules/core/src/flex/messaging/config/FlexConfigurationManager.java
index cdf4184..313cb87 100644
--- a/modules/core/src/flex/messaging/config/FlexConfigurationManager.java
+++ b/modules/core/src/flex/messaging/config/FlexConfigurationManager.java
@@ -40,7 +40,7 @@ import java.io.File;
  * </p>
  *
  * @see ConfigurationParser
- * @exclude
+ *
  */
 public class FlexConfigurationManager implements ConfigurationManager
 {
@@ -205,7 +205,7 @@ public class FlexConfigurationManager implements ConfigurationManager
                         boolean available = resolver.isAvailable(configurationPath, isServletResource);
                         if (available) {
                             // it's available via the servlet resource loader
-                            configurationResolver = (ConfigurationFileResolver) resolver;
+                            configurationResolver = resolver;
                         } else {
                             // it wasn't available via the servlet resource loader
                             configurationResolver = new LocalFileResolver(LocalFileResolver.SERVER);

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/config/MessageFilterSettings.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/config/MessageFilterSettings.java b/modules/core/src/flex/messaging/config/MessageFilterSettings.java
index c58bc25..34ed523 100644
--- a/modules/core/src/flex/messaging/config/MessageFilterSettings.java
+++ b/modules/core/src/flex/messaging/config/MessageFilterSettings.java
@@ -19,7 +19,7 @@ package flex.messaging.config;
 /**
  * Settings class for message filters.
  * 
- * @exclude
+ *
  */
 public class MessageFilterSettings extends PropertiesSettings
 {
@@ -27,8 +27,8 @@ public class MessageFilterSettings extends PropertiesSettings
      * Filters belong to one of two types; those that filter messages
      * asynchronously and those that filter messages synchronously.
      */
-    public enum FilterType { ASYNC, SYNC };
-    
+    public enum FilterType { ASYNC, SYNC }
+
     private String id;
 
     /**

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/config/MessagingConfiguration.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/config/MessagingConfiguration.java b/modules/core/src/flex/messaging/config/MessagingConfiguration.java
index 4e96078..828d7ea 100644
--- a/modules/core/src/flex/messaging/config/MessagingConfiguration.java
+++ b/modules/core/src/flex/messaging/config/MessagingConfiguration.java
@@ -58,7 +58,7 @@ import java.util.Map;
  * instead, this object sets the relevant values on the broker using
  * information which a ConfigurationParser has provided for it.
  *
- * @exclude
+ *
  */
 public class MessagingConfiguration implements ServicesConfiguration
 {
@@ -456,7 +456,7 @@ public class MessagingConfiguration implements ServicesConfiguration
     }
 
     /**
-     * @exclude
+     *
      * Used by the MessageBrokerServlet to set up the singleton Log instance
      * and add any targets defined in the logging configuration.
      * This needs to be invoked ahead of creating and bootstrapping a MessageBroker
@@ -506,7 +506,7 @@ public class MessagingConfiguration implements ServicesConfiguration
             {
                 // Unwrap to get to the interesting exception
                 if (t instanceof InvocationTargetException)
-                    t = ((InvocationTargetException ) t).getCause();
+                    t = t.getCause();
 
                 System.err.println("*** Error setting up logging system");
                 t.printStackTrace();
@@ -558,7 +558,7 @@ public class MessagingConfiguration implements ServicesConfiguration
                 Object filterChain = getMessageFilterChain.invoke(broker, (Object[])null);
                 Class arg = filterIsAsync ? asyncFilterClass : syncFilterClass; 
                 Method addFilter = filterChain.getClass().getDeclaredMethod("add", arg);
-                addFilter.invoke(filterChain, new Object[] {filter});
+                addFilter.invoke(filterChain, filter);
             }
             catch (Exception e)
             {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/config/SecuritySettings.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/config/SecuritySettings.java b/modules/core/src/flex/messaging/config/SecuritySettings.java
index b5db672..f95412a 100644
--- a/modules/core/src/flex/messaging/config/SecuritySettings.java
+++ b/modules/core/src/flex/messaging/config/SecuritySettings.java
@@ -24,7 +24,7 @@ import java.util.HashMap;
 import java.util.Map;
 
 /**
- * @exclude
+ *
  */
 public class SecuritySettings
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/config/ServerConfigurationParser.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/config/ServerConfigurationParser.java b/modules/core/src/flex/messaging/config/ServerConfigurationParser.java
index 35dfb79..9ff3e1c 100644
--- a/modules/core/src/flex/messaging/config/ServerConfigurationParser.java
+++ b/modules/core/src/flex/messaging/config/ServerConfigurationParser.java
@@ -35,7 +35,7 @@ import flex.messaging.util.LocaleUtils;
  * sections of the document need to be parsed first.
  * </p>
  *
- * @exclude
+ *
  */
 public abstract class ServerConfigurationParser extends AbstractConfigurationParser
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/config/ServletResourceResolver.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/config/ServletResourceResolver.java b/modules/core/src/flex/messaging/config/ServletResourceResolver.java
index d08cfd8..b79bc27 100644
--- a/modules/core/src/flex/messaging/config/ServletResourceResolver.java
+++ b/modules/core/src/flex/messaging/config/ServletResourceResolver.java
@@ -28,7 +28,7 @@ import java.util.Set;
 import java.util.Stack;
 
 /**
- * @exclude
+ *
  */
 public class ServletResourceResolver implements ConfigurationFileResolver
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/config/SharedServerSettings.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/config/SharedServerSettings.java b/modules/core/src/flex/messaging/config/SharedServerSettings.java
index 82cac64..8fe815a 100644
--- a/modules/core/src/flex/messaging/config/SharedServerSettings.java
+++ b/modules/core/src/flex/messaging/config/SharedServerSettings.java
@@ -23,7 +23,7 @@ package flex.messaging.config;
  * The <tt>MessagingConfiguration</tt> instance using the parser will store these and
  * use them to configure the <tt>MessageBroker</tt> with shared server instances.
  *
- * @exclude
+ *
  */
 public class SharedServerSettings extends PropertiesSettings
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/config/SystemSettings.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/config/SystemSettings.java b/modules/core/src/flex/messaging/config/SystemSettings.java
index 86619e7..cf4cd49 100644
--- a/modules/core/src/flex/messaging/config/SystemSettings.java
+++ b/modules/core/src/flex/messaging/config/SystemSettings.java
@@ -31,7 +31,7 @@ import java.util.Locale;
 import javax.servlet.ServletContext;
 
 /**
- * @exclude
+ *
  */
 public class SystemSettings
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/config/XPathServerConfigurationParser.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/config/XPathServerConfigurationParser.java b/modules/core/src/flex/messaging/config/XPathServerConfigurationParser.java
index 4860290..c567f21 100644
--- a/modules/core/src/flex/messaging/config/XPathServerConfigurationParser.java
+++ b/modules/core/src/flex/messaging/config/XPathServerConfigurationParser.java
@@ -32,7 +32,7 @@ import javax.xml.xpath.XPathFactory;
  * sections of the document need to be parsed first.
  * </p>
  *
- * @exclude
+ *
  */
 public class XPathServerConfigurationParser extends ServerConfigurationParser
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/endpoints/AbstractEndpoint.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/endpoints/AbstractEndpoint.java b/modules/core/src/flex/messaging/endpoints/AbstractEndpoint.java
index d773f1c..7a81ee8 100644
--- a/modules/core/src/flex/messaging/endpoints/AbstractEndpoint.java
+++ b/modules/core/src/flex/messaging/endpoints/AbstractEndpoint.java
@@ -738,7 +738,7 @@ public abstract class AbstractEndpoint extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      * Returns the url of the endpoint parsed for the client.
      *
      * @return The url of the endpoint parsed for the client.
@@ -762,7 +762,7 @@ public abstract class AbstractEndpoint extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      * Returns the total throughput for the endpoint.
      *
      * @return The total throughput for the endpoint.
@@ -800,7 +800,7 @@ public abstract class AbstractEndpoint extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      */
     public Message convertToSmallMessage(Message message)
     {
@@ -896,7 +896,7 @@ public abstract class AbstractEndpoint extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      * Make sure this matches with ChannelSettings.getParsedUri.
      */
     public String getParsedUrl(String contextPath)
@@ -906,7 +906,7 @@ public abstract class AbstractEndpoint extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      */
     public void handleClientMessagingVersion(Number version)
     {
@@ -1107,7 +1107,7 @@ public abstract class AbstractEndpoint extends ManageableComponent
    }
 
    /**
-    * @exclude
+    *
     * Performance metrics gathering property
     */
     public boolean isRecordMessageSizes()
@@ -1116,7 +1116,7 @@ public abstract class AbstractEndpoint extends ManageableComponent
     }
 
    /**
-    * @exclude
+    *
     * Performance metrics gathering property
     */
     public boolean isRecordMessageTimes()
@@ -1125,7 +1125,7 @@ public abstract class AbstractEndpoint extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      */
     public void setThreadLocals()
     {
@@ -1143,7 +1143,7 @@ public abstract class AbstractEndpoint extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      */
     public void clearThreadLocals()
     {
@@ -1372,7 +1372,7 @@ public abstract class AbstractEndpoint extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      * Verifies that the remote client supports the FlexClient API.
      * Legacy clients that do not support this receive a message fault for any messages they send.
      *
@@ -1389,7 +1389,7 @@ public abstract class AbstractEndpoint extends ManageableComponent
     }
 
     /**
-     * @exclude
+     *
      */
     protected Class<?> createClass(String className)
     {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/endpoints/BaseHTTPEndpoint.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/endpoints/BaseHTTPEndpoint.java b/modules/core/src/flex/messaging/endpoints/BaseHTTPEndpoint.java
index 5dbf48f..bb31b39 100644
--- a/modules/core/src/flex/messaging/endpoints/BaseHTTPEndpoint.java
+++ b/modules/core/src/flex/messaging/endpoints/BaseHTTPEndpoint.java
@@ -203,7 +203,7 @@ public abstract class BaseHTTPEndpoint extends AbstractEndpoint
     //----------------------------------
 
     /**
-     * @exclude
+     *
      * This is a property used on the client.
      */
     protected boolean loginAfterDisconnect;
@@ -389,7 +389,7 @@ public abstract class BaseHTTPEndpoint extends AbstractEndpoint
 
 
     /**
-     * @exclude
+     *
      * Returns a <code>ConfigMap</code> of endpoint properties that the client
      * needs. This includes properties from <code>super.describeEndpoint</code>
      * and additional <code>BaseHTTPEndpoint</code> specific properties under

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/endpoints/BasePollingHTTPEndpoint.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/endpoints/BasePollingHTTPEndpoint.java b/modules/core/src/flex/messaging/endpoints/BasePollingHTTPEndpoint.java
index 70f1318..3c29fae 100644
--- a/modules/core/src/flex/messaging/endpoints/BasePollingHTTPEndpoint.java
+++ b/modules/core/src/flex/messaging/endpoints/BasePollingHTTPEndpoint.java
@@ -252,7 +252,7 @@ public abstract class BasePollingHTTPEndpoint extends BaseHTTPEndpoint implement
     //----------------------------------
 
     /**
-     * @exclude
+     *
      * This is a property used on the client.
      */
     protected boolean piggybackingEnabled;
@@ -262,7 +262,7 @@ public abstract class BasePollingHTTPEndpoint extends BaseHTTPEndpoint implement
     //----------------------------------
 
     /**
-     * @exclude
+     *
      * This is a property used on the client.
      */
     protected boolean pollingEnabled;
@@ -272,7 +272,7 @@ public abstract class BasePollingHTTPEndpoint extends BaseHTTPEndpoint implement
     //----------------------------------
 
     /**
-     * @exclude
+     *
      * This is a property used on the client.
      */
     protected long pollingIntervalMillis = -1;
@@ -332,7 +332,7 @@ public abstract class BasePollingHTTPEndpoint extends BaseHTTPEndpoint implement
     //--------------------------------------------------------------------------
 
     /**
-     * @exclude
+     *
      * Returns a <code>ConfigMap</code> of endpoint properties that the client
      * needs. This includes properties from <code>super.describeEndpoint</code>
      * and additional <code>BaseHTTPEndpoint</code> specific properties under

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/endpoints/DuplicateSessionException.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/endpoints/DuplicateSessionException.java b/modules/core/src/flex/messaging/endpoints/DuplicateSessionException.java
index a1700c1..2cc6b0f 100644
--- a/modules/core/src/flex/messaging/endpoints/DuplicateSessionException.java
+++ b/modules/core/src/flex/messaging/endpoints/DuplicateSessionException.java
@@ -25,12 +25,12 @@ import flex.messaging.log.LogEvent;
 public class DuplicateSessionException extends MessageException
 {
     /**
-     * @exclude
+     *
      */
     public static final String DUPLICATE_SESSION_DETECTED_CODE = "Server.Processing.DuplicateSessionDetected";
 
     /**
-     * @exclude
+     *
      */
     private static final long serialVersionUID = -741704726700619666L;
 

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/endpoints/Endpoint.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/endpoints/Endpoint.java b/modules/core/src/flex/messaging/endpoints/Endpoint.java
index 3182ce5..e16342f 100644
--- a/modules/core/src/flex/messaging/endpoints/Endpoint.java
+++ b/modules/core/src/flex/messaging/endpoints/Endpoint.java
@@ -179,7 +179,7 @@ public interface Endpoint extends Manageable
     void setUrl(String url);  
     
     /**
-     * @exclude
+     *
      * Returns the url of the endpoint parsed for the client. 
      *  
      * @return The url of the endpoint parsed for the client.

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/factories/JavaFactory.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/factories/JavaFactory.java b/modules/core/src/flex/messaging/factories/JavaFactory.java
index 333ae96..e488919 100644
--- a/modules/core/src/flex/messaging/factories/JavaFactory.java
+++ b/modules/core/src/flex/messaging/factories/JavaFactory.java
@@ -55,7 +55,7 @@ public class JavaFactory implements FlexFactory, DestructibleFlexFactory
     private static final int INVALID_CLASS_FOUND = 10654;
 
     /**
-     * @exclude
+     *
      * Default constructor
      */
     public JavaFactory()

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/AbstractProxy.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/AbstractProxy.java b/modules/core/src/flex/messaging/io/AbstractProxy.java
index 6d86da9..2f29fb6 100644
--- a/modules/core/src/flex/messaging/io/AbstractProxy.java
+++ b/modules/core/src/flex/messaging/io/AbstractProxy.java
@@ -34,7 +34,7 @@ import flex.messaging.util.ClassUtil;
  * a given property name.
  *
  * @see flex.messaging.io.PropertyProxy
- * @exclude
+ *
  */
 public abstract class AbstractProxy implements PropertyProxy, Serializable
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/ArrayList.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/ArrayList.java b/modules/core/src/flex/messaging/io/ArrayList.java
index 6c5c383..b3eeb24 100644
--- a/modules/core/src/flex/messaging/io/ArrayList.java
+++ b/modules/core/src/flex/messaging/io/ArrayList.java
@@ -21,7 +21,7 @@ package flex.messaging.io;
 import java.util.Collection;
 
 /**
- * @exclude
+ *
  */
 public class ArrayList extends ArrayCollection 
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/ManagedObjectProxy.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/ManagedObjectProxy.java b/modules/core/src/flex/messaging/io/ManagedObjectProxy.java
index 02072f3..34bde91 100644
--- a/modules/core/src/flex/messaging/io/ManagedObjectProxy.java
+++ b/modules/core/src/flex/messaging/io/ManagedObjectProxy.java
@@ -22,7 +22,7 @@ import java.io.ObjectOutput;
 import java.util.Iterator;
 
 /**
- * @exclude
+ *
  */
 public class ManagedObjectProxy extends ObjectProxy 
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/MessageIOConstants.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/MessageIOConstants.java b/modules/core/src/flex/messaging/io/MessageIOConstants.java
index 245efec..844590b 100644
--- a/modules/core/src/flex/messaging/io/MessageIOConstants.java
+++ b/modules/core/src/flex/messaging/io/MessageIOConstants.java
@@ -17,7 +17,7 @@
 package flex.messaging.io;
 
 /**
- * @exclude
+ *
  */
 public interface MessageIOConstants
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/MessageSerializer.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/MessageSerializer.java b/modules/core/src/flex/messaging/io/MessageSerializer.java
index 02d4c00..5347db7 100644
--- a/modules/core/src/flex/messaging/io/MessageSerializer.java
+++ b/modules/core/src/flex/messaging/io/MessageSerializer.java
@@ -23,7 +23,7 @@ import java.io.IOException;
 import java.io.OutputStream;
 
 /**
- * @exclude
+ *
  */
 public interface MessageSerializer
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/SerializationContext.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/SerializationContext.java b/modules/core/src/flex/messaging/io/SerializationContext.java
index 24f5d78..d4a9f41 100644
--- a/modules/core/src/flex/messaging/io/SerializationContext.java
+++ b/modules/core/src/flex/messaging/io/SerializationContext.java
@@ -274,7 +274,7 @@ public class SerializationContext implements Serializable, Cloneable
     }
 
     /**
-     * @exclude
+     *
      * Create thread local storage.
      */
     public static void createThreadLocalObjects()
@@ -284,7 +284,7 @@ public class SerializationContext implements Serializable, Cloneable
     }
 
     /**
-     * @exclude
+     *
      * Destroy thread local storage.
      * Call ONLY on shutdown.
      */

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/TypeMarshallingContext.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/TypeMarshallingContext.java b/modules/core/src/flex/messaging/io/TypeMarshallingContext.java
index 1201fac..7a505a0 100644
--- a/modules/core/src/flex/messaging/io/TypeMarshallingContext.java
+++ b/modules/core/src/flex/messaging/io/TypeMarshallingContext.java
@@ -215,7 +215,7 @@ public class TypeMarshallingContext
     }
 
     /**
-     * @exclude
+     *
      * Destroy static thread local storage.
      * Call ONLY on shutdown.
      */
@@ -228,7 +228,7 @@ public class TypeMarshallingContext
     }
 
     /**
-     * @exclude
+     *
      * Create static thread local storage.
      */
     public static void createThreadLocalObjects()

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/UnknownTypeException.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/UnknownTypeException.java b/modules/core/src/flex/messaging/io/UnknownTypeException.java
index 40dd7b2..9788b41 100644
--- a/modules/core/src/flex/messaging/io/UnknownTypeException.java
+++ b/modules/core/src/flex/messaging/io/UnknownTypeException.java
@@ -17,7 +17,7 @@
 package flex.messaging.io;
 
 /**
- * @exclude
+ *
  */
 public class UnknownTypeException extends SerializationException
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/AbstractAmfInput.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/AbstractAmfInput.java b/modules/core/src/flex/messaging/io/amf/AbstractAmfInput.java
index 1ee3d12..5d985f6 100644
--- a/modules/core/src/flex/messaging/io/amf/AbstractAmfInput.java
+++ b/modules/core/src/flex/messaging/io/amf/AbstractAmfInput.java
@@ -35,7 +35,7 @@ import flex.messaging.util.XMLUtil;
  * A deserializer of AMF protocol data.
  *
  * @see ActionMessageOutput
- * @exclude
+ *
  */
 public abstract class AbstractAmfInput extends AmfIO implements ActionMessageInput
 {
@@ -68,7 +68,7 @@ public abstract class AbstractAmfInput extends AmfIO implements ActionMessageInp
 
     /**
      * Internal use
-     * @exclude
+     *
      */
     public void setInputStream(InputStream in)
     {
@@ -116,7 +116,7 @@ public abstract class AbstractAmfInput extends AmfIO implements ActionMessageInp
      *               [0] - String className - the name or alias of the class to create
      *               [1] - PropertyProxy proxy
      * @return an instance of the appropriate object for deserialization
-     * @exclude
+     *
      */
     protected Object createObjectInstance(Object[] params)
     {
@@ -188,7 +188,7 @@ public abstract class AbstractAmfInput extends AmfIO implements ActionMessageInp
      * Internal use. Convenience method for creating an ASObject and assigning it a type
      * @param type named type for the ASObject or null
      * @return a new instance of ASObject
-     * @exclude
+     *
      */
     protected ASObject createDefaultASObject(String type)
     {
@@ -199,7 +199,7 @@ public abstract class AbstractAmfInput extends AmfIO implements ActionMessageInp
     }
 
     /**
-     * @exclude
+     *
      */
     protected void readMaxStringBytes()
     {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/AbstractAmfOutput.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/AbstractAmfOutput.java b/modules/core/src/flex/messaging/io/amf/AbstractAmfOutput.java
index 09f4224..0a3fb4f 100644
--- a/modules/core/src/flex/messaging/io/amf/AbstractAmfOutput.java
+++ b/modules/core/src/flex/messaging/io/amf/AbstractAmfOutput.java
@@ -29,12 +29,12 @@ import org.w3c.dom.Document;
  * An abstract serializer of AMF protocol data.
  *
  * @see ActionMessageOutput
- * @exclude
+ *
  */
 public abstract class AbstractAmfOutput extends AmfIO implements ActionMessageOutput
 {
     /**
-     * @exclude
+     *
      */
     protected DataOutputStream out;
 

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/ActionContext.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/ActionContext.java b/modules/core/src/flex/messaging/io/amf/ActionContext.java
index 16cb1bb..3b7d2a5 100644
--- a/modules/core/src/flex/messaging/io/amf/ActionContext.java
+++ b/modules/core/src/flex/messaging/io/amf/ActionContext.java
@@ -24,7 +24,7 @@ import java.io.Serializable;
 
 /**
  * A context for reading and writing messages.
- * @exclude
+ *
  */
 public class ActionContext implements Serializable
 {
@@ -42,38 +42,38 @@ public class ActionContext implements Serializable
     public boolean isDebug;
 
     /**
-     * @exclude
+     *
      * Performance metrics related field, keeps track of bytes deserialized using this context
      */
     private int deserializedBytes;
 
     /**
-     * @exclude
+     *
      * Performance metrics related field, keeps track of bytes serialized using this context
      */
     private int serializedBytes;
 
     /**
-     * @exclude
+     *
      * Performance metrics related field, recordMessageSizes flag
      */
     private boolean recordMessageSizes;
 
     /**
-     * @exclude
+     *
      * Performance metrics related field, recordMessageTimes flag
      */
     private boolean recordMessageTimes;
 
     /**
-     * @exclude
+     *
      * Performance metrics related field, incoming MPI object, will only be populated when one of
      * the record-message-* params is enabled
      */
     private MessagePerformanceInfo mpii;
 
     /**
-     * @exclude
+     *
      * Performance metrics related field, outgoing MPI object, will only be populated when one of
      * the record-message-* params is enabled
      */

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/ActionMessageInput.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/ActionMessageInput.java b/modules/core/src/flex/messaging/io/amf/ActionMessageInput.java
index e6666be..8d8ecd3 100644
--- a/modules/core/src/flex/messaging/io/amf/ActionMessageInput.java
+++ b/modules/core/src/flex/messaging/io/amf/ActionMessageInput.java
@@ -85,19 +85,19 @@ public interface ActionMessageInput extends ObjectInput
 
     /**
      * Internal use only.
-     * @exclude
+     *
      */
     void setInputStream(InputStream in);
 
     /**
      * Internal use only.
-     * @exclude
+     *
      */
     void setDebugTrace(AmfTrace trace);
 
     /**
      * Internal use only.
-     * @exclude
+     *
      */
     void reset();
 }

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/ActionMessageOutput.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/ActionMessageOutput.java b/modules/core/src/flex/messaging/io/amf/ActionMessageOutput.java
index 190a4f4..7b319af 100644
--- a/modules/core/src/flex/messaging/io/amf/ActionMessageOutput.java
+++ b/modules/core/src/flex/messaging/io/amf/ActionMessageOutput.java
@@ -74,19 +74,19 @@ public interface ActionMessageOutput extends ObjectOutput
 
     /**
      * Internal use only.
-     * @exclude
+     *
      */
     void writeObjectTraits(TraitsInfo traits) throws IOException;
 
     /**
      * Internal use only.
-     * @exclude
+     *
      */
     void writeObjectProperty(String name, Object value) throws IOException;
 
     /**
      * Internal use only.
-     * @exclude
+     *
      */
     void writeObjectEnd() throws IOException;
 
@@ -97,19 +97,19 @@ public interface ActionMessageOutput extends ObjectOutput
 
     /**
      * Internal use only.
-     * @exclude
+     *
      */
     void setDebugTrace(AmfTrace debugBuffer);
 
     /**
      * Internal use only.
-     * @exclude
+     *
      */
     void setOutputStream(OutputStream out);
 
     /**
      * Internal use only.
-     * @exclude
+     *
      */
     void reset();
 

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/Amf0Input.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/Amf0Input.java b/modules/core/src/flex/messaging/io/amf/Amf0Input.java
index 7027461..fa66ae9 100644
--- a/modules/core/src/flex/messaging/io/amf/Amf0Input.java
+++ b/modules/core/src/flex/messaging/io/amf/Amf0Input.java
@@ -33,7 +33,7 @@ import flex.messaging.util.ClassUtil;
 
 /**
  * An Amf0 input object.
- * @exclude
+ *
  */
 public class Amf0Input extends AbstractAmfInput implements AmfTypes
 {
@@ -43,12 +43,12 @@ public class Amf0Input extends AbstractAmfInput implements AmfTypes
      * that the next object in the stream is to be deserialized differently. The
      * original hope was for two independent encoding versions... but for now
      * we just keep a reference to objectInput here.
-     * @exclude
+     *
      */
     protected ActionMessageInput avmPlusInput;
 
     /**
-     * @exclude
+     *
      */
     protected List objectsTable;
 

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/Amf0Output.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/Amf0Output.java b/modules/core/src/flex/messaging/io/amf/Amf0Output.java
index d8752bb..b04713a 100644
--- a/modules/core/src/flex/messaging/io/amf/Amf0Output.java
+++ b/modules/core/src/flex/messaging/io/amf/Amf0Output.java
@@ -44,38 +44,38 @@ import javax.sql.RowSet;
 
 /**
  * An Amf0 output object.
- * @exclude
+ *
  */
 public class Amf0Output extends AbstractAmfOutput implements AmfTypes
 {
     /**
      * 3-byte marker for object end; used for faster serialization
      * than a combination of writeUTF("") and writeByte(kObjectEndType).
-     * @exclude
+     *
      */
     public static final byte[] OBJECT_END_MARKER = {0, 0, kObjectEndType};
 
     /**
      * A mapping of object instances to their serialization numbers
      * for storing object references on the stream.
-     * @exclude
+     *
      */
     protected IdentityHashMap serializedObjects;
 
     /**
      * Number of serialized objects.
-     * @exclude
+     *
      */
     protected int serializedObjectCount = 0;
 
     /**
      * AVM+ Encoding.
-     * @exclude
+     *
      */
     protected boolean avmPlus;
 
     /**
-     * @exclude
+     *
      */
     protected Amf3Output avmPlusOutput;
 
@@ -250,7 +250,7 @@ public class Amf0Output extends AbstractAmfOutput implements AmfTypes
     }
 
     /**
-     * @exclude
+     *
      */
     public void writeObjectTraits(TraitsInfo traits) throws IOException
     {
@@ -273,7 +273,7 @@ public class Amf0Output extends AbstractAmfOutput implements AmfTypes
     }
 
     /**
-     * @exclude
+     *
      */
     public void writeObjectProperty(String name, Object value) throws IOException
     {
@@ -287,7 +287,7 @@ public class Amf0Output extends AbstractAmfOutput implements AmfTypes
     }
 
     /**
-     * @exclude
+     *
      */
     public void writeObjectEnd() throws IOException
     {
@@ -303,7 +303,7 @@ public class Amf0Output extends AbstractAmfOutput implements AmfTypes
     //
 
     /**
-     * @exclude
+     *
      */
     protected void writeAMFBoolean(boolean b) throws IOException
     {
@@ -316,7 +316,7 @@ public class Amf0Output extends AbstractAmfOutput implements AmfTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeAMFDouble(double d) throws IOException
     {
@@ -329,7 +329,7 @@ public class Amf0Output extends AbstractAmfOutput implements AmfTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeAMFDate(Date d) throws IOException
     {
@@ -344,7 +344,7 @@ public class Amf0Output extends AbstractAmfOutput implements AmfTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeAMFArray(Object o, Class componentType) throws IOException
     {
@@ -363,7 +363,7 @@ public class Amf0Output extends AbstractAmfOutput implements AmfTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeArrayCollection(Collection col, SerializationDescriptor desc) throws IOException
     {
@@ -392,7 +392,7 @@ public class Amf0Output extends AbstractAmfOutput implements AmfTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeCustomObject(Object o) throws IOException
     {
@@ -444,7 +444,7 @@ public class Amf0Output extends AbstractAmfOutput implements AmfTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writePropertyProxy(PropertyProxy pp, Object instance) throws IOException
     {
@@ -500,7 +500,7 @@ public class Amf0Output extends AbstractAmfOutput implements AmfTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeMapAsECMAArray(Map m) throws IOException
     {
@@ -525,7 +525,7 @@ public class Amf0Output extends AbstractAmfOutput implements AmfTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeAMFNull() throws IOException
     {
@@ -536,7 +536,7 @@ public class Amf0Output extends AbstractAmfOutput implements AmfTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeAMFString(String str) throws IOException
     {
@@ -547,7 +547,7 @@ public class Amf0Output extends AbstractAmfOutput implements AmfTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeObjectArray(Object[] values, SerializationDescriptor descriptor) throws IOException
     {
@@ -589,7 +589,7 @@ public class Amf0Output extends AbstractAmfOutput implements AmfTypes
      *
      * @param c Collection to be serialized as an array.
      * @throws java.io.IOException The exception can be generated by the output stream
-     * @exclude
+     *
      */
     protected void writeCollection(Collection c, SerializationDescriptor descriptor) throws IOException
     {
@@ -634,7 +634,7 @@ public class Amf0Output extends AbstractAmfOutput implements AmfTypes
      * boolean, char, double, float, long, int, short, byte
      * </p>
      * @param obj An array of primitives
-     * @exclude
+     *
      */
     protected void writePrimitiveArray(Object obj) throws IOException
     {
@@ -710,7 +710,7 @@ public class Amf0Output extends AbstractAmfOutput implements AmfTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeCharArrayAsString(Character[] ca) throws IOException
     {
@@ -729,7 +729,7 @@ public class Amf0Output extends AbstractAmfOutput implements AmfTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeCharArrayAsString(char[] ca) throws IOException
     {
@@ -737,7 +737,7 @@ public class Amf0Output extends AbstractAmfOutput implements AmfTypes
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeUTF(String str, boolean forceLong, boolean writeType) throws IOException
     {
@@ -820,7 +820,7 @@ public class Amf0Output extends AbstractAmfOutput implements AmfTypes
      * Remember the object's serialization number so that it can be referred to
      * as a reference later. Only complex ojects should be stored as references.
      *
-     * @exclude
+     *
      */
     protected void rememberObjectReference(Object obj)
     {
@@ -834,7 +834,7 @@ public class Amf0Output extends AbstractAmfOutput implements AmfTypes
      *
      * @return Success/failure indicator as to whether the object could be
      *         serialized as a reference.
-     * @exclude
+     *
      */
     protected boolean serializeAsReference(Object obj) throws IOException
     {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/Amf3Input.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/Amf3Input.java b/modules/core/src/flex/messaging/io/amf/Amf3Input.java
index 2cc1f30..0e62b88 100644
--- a/modules/core/src/flex/messaging/io/amf/Amf3Input.java
+++ b/modules/core/src/flex/messaging/io/amf/Amf3Input.java
@@ -43,22 +43,22 @@ import flex.messaging.util.Trace;
  * in avmglue/DataIO.cpp
  * </p>
  *
- * @exclude
+ *
  */
 public class Amf3Input extends AbstractAmfInput implements Amf3Types
 {
     /**
-     * @exclude
+     *
      */
     protected List objectTable;
 
     /**
-     * @exclude
+     *
      */
     protected List stringTable;
 
     /**
-     * @exclude
+     *
      */
     protected List traitsTable;
 
@@ -134,7 +134,7 @@ public class Amf3Input extends AbstractAmfInput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected Object readObjectValue(int type) throws ClassNotFoundException, IOException
     {
@@ -248,7 +248,7 @@ public class Amf3Input extends AbstractAmfInput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected String readString() throws IOException
     {
@@ -621,7 +621,7 @@ public class Amf3Input extends AbstractAmfInput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected Object readArray() throws ClassNotFoundException, IOException
     {
@@ -727,7 +727,7 @@ public class Amf3Input extends AbstractAmfInput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected Object readScriptObject() throws ClassNotFoundException, IOException
     {
@@ -814,7 +814,7 @@ public class Amf3Input extends AbstractAmfInput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected void readExternalizable(String className, Object object) throws ClassNotFoundException, IOException
     {
@@ -837,7 +837,7 @@ public class Amf3Input extends AbstractAmfInput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected byte[] readByteArray() throws IOException
     {
@@ -863,7 +863,7 @@ public class Amf3Input extends AbstractAmfInput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected TraitsInfo readTraits(int ref) throws IOException
     {
@@ -890,7 +890,7 @@ public class Amf3Input extends AbstractAmfInput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected String readUTF(int utflen) throws IOException
     {
@@ -919,7 +919,7 @@ public class Amf3Input extends AbstractAmfInput implements Amf3Types
      *
      * @return A int capable of holding an unsigned 29 bit integer.
      * @throws IOException
-     * @exclude
+     *
      */
     protected int readUInt29() throws IOException
     {
@@ -950,7 +950,7 @@ public class Amf3Input extends AbstractAmfInput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected Object readXml() throws IOException
     {
@@ -986,7 +986,7 @@ public class Amf3Input extends AbstractAmfInput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected Object getObjectReference(int ref)
     {
@@ -997,7 +997,7 @@ public class Amf3Input extends AbstractAmfInput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected String getStringReference(int ref)
     {
@@ -1010,7 +1010,7 @@ public class Amf3Input extends AbstractAmfInput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected TraitsInfo getTraitReference(int ref)
     {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/Amf3Output.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/Amf3Output.java b/modules/core/src/flex/messaging/io/amf/Amf3Output.java
index a33a7d5..7919530 100644
--- a/modules/core/src/flex/messaging/io/amf/Amf3Output.java
+++ b/modules/core/src/flex/messaging/io/amf/Amf3Output.java
@@ -55,22 +55,22 @@ import java.util.Map;
  * in avmglue/DataIO.cpp
  * </p>
  *
- * @exclude
+ *
  */
 public class Amf3Output extends AbstractAmfOutput implements Amf3Types
 {
     /**
-     * @exclude
+     *
      */
     protected IdentityHashMap<Object, Integer> objectTable;
 
     /**
-     * @exclude
+     *
      */
     protected HashMap<TraitsInfo, Integer> traitsTable;
 
     /**
-     * @exclude
+     *
      */
     protected HashMap<String, Integer> stringTable;
 
@@ -130,7 +130,7 @@ public class Amf3Output extends AbstractAmfOutput implements Amf3Types
                 // Using double to write big numbers such as BigInteger or
                 // BigDecimal can result in information loss so we write
                 // them as String by default...
-                writeAMFString(((Number)o).toString());
+                writeAMFString(o.toString());
             }
             else
             {
@@ -286,7 +286,7 @@ public class Amf3Output extends AbstractAmfOutput implements Amf3Types
     //
 
     /**
-     * @exclude
+     *
      */
     protected void writeAMFBoolean(boolean b) throws IOException
     {
@@ -300,7 +300,7 @@ public class Amf3Output extends AbstractAmfOutput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeAMFDate(Date d) throws IOException
     {
@@ -320,7 +320,7 @@ public class Amf3Output extends AbstractAmfOutput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeAMFDouble(double d) throws IOException
     {
@@ -332,7 +332,7 @@ public class Amf3Output extends AbstractAmfOutput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeAMFInt(int i) throws IOException
     {
@@ -590,7 +590,7 @@ public class Amf3Output extends AbstractAmfOutput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeMapAsECMAArray(Map map) throws IOException
     {
@@ -629,7 +629,7 @@ public class Amf3Output extends AbstractAmfOutput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeAMFNull() throws IOException
     {
@@ -640,7 +640,7 @@ public class Amf3Output extends AbstractAmfOutput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeAMFString(String s) throws IOException
     {
@@ -654,7 +654,7 @@ public class Amf3Output extends AbstractAmfOutput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeStringWithoutType(String s) throws IOException
     {
@@ -675,7 +675,7 @@ public class Amf3Output extends AbstractAmfOutput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeAMFArray(Object o, Class componentType) throws IOException
     {
@@ -698,7 +698,7 @@ public class Amf3Output extends AbstractAmfOutput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeArrayCollection(Collection col, SerializationDescriptor desc) throws IOException
     {
@@ -729,7 +729,7 @@ public class Amf3Output extends AbstractAmfOutput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeCustomObject(Object o) throws IOException
     {
@@ -785,7 +785,7 @@ public class Amf3Output extends AbstractAmfOutput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writePropertyProxy(PropertyProxy proxy, Object instance) throws IOException
     {
@@ -866,7 +866,7 @@ public class Amf3Output extends AbstractAmfOutput implements Amf3Types
      * </p>
      *
      * @param obj An array of primitives
-     * @exclude
+     *
      */
     protected void writePrimitiveArray(Object obj) throws IOException
     {
@@ -989,7 +989,7 @@ public class Amf3Output extends AbstractAmfOutput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeAMFByteArray(byte[] ba) throws IOException
     {
@@ -1012,7 +1012,7 @@ public class Amf3Output extends AbstractAmfOutput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeAMFByteArray(Byte[] ba) throws IOException
     {
@@ -1042,7 +1042,7 @@ public class Amf3Output extends AbstractAmfOutput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeCharArrayAsString(Character[] ca) throws IOException
     {
@@ -1061,7 +1061,7 @@ public class Amf3Output extends AbstractAmfOutput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeCharArrayAsString(char[] ca) throws IOException
     {
@@ -1070,7 +1070,7 @@ public class Amf3Output extends AbstractAmfOutput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeObjectArray(Object[] values, SerializationDescriptor descriptor) throws IOException
     {
@@ -1113,7 +1113,7 @@ public class Amf3Output extends AbstractAmfOutput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeCollection(Collection c, SerializationDescriptor descriptor) throws IOException
     {
@@ -1164,7 +1164,7 @@ public class Amf3Output extends AbstractAmfOutput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected void writeUInt29(int ref) throws IOException
     {
@@ -1215,7 +1215,7 @@ public class Amf3Output extends AbstractAmfOutput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     public void writeAMFUTF(String s) throws IOException
     {
@@ -1276,7 +1276,7 @@ public class Amf3Output extends AbstractAmfOutput implements Amf3Types
      *
      * @return Success/failure indicator as to whether the object could be
      *         serialized as a reference.
-     * @exclude
+     *
      */
     protected boolean byReference(Object o) throws IOException
     {
@@ -1306,7 +1306,7 @@ public class Amf3Output extends AbstractAmfOutput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     public void addObjectReference(Object o) throws IOException
     {
@@ -1314,7 +1314,7 @@ public class Amf3Output extends AbstractAmfOutput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected boolean byReference(String s) throws IOException
     {
@@ -1342,7 +1342,7 @@ public class Amf3Output extends AbstractAmfOutput implements Amf3Types
     }
 
     /**
-     * @exclude
+     *
      */
     protected boolean byReference(TraitsInfo ti) throws IOException
     {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/Amf3Types.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/Amf3Types.java b/modules/core/src/flex/messaging/io/amf/Amf3Types.java
index 6aeb74c..72e1b82 100644
--- a/modules/core/src/flex/messaging/io/amf/Amf3Types.java
+++ b/modules/core/src/flex/messaging/io/amf/Amf3Types.java
@@ -47,7 +47,7 @@ public interface Amf3Types
 
     /**
      * Internal use only.
-     * @exclude
+     *
      */
     int UINT29_MASK = 0x1FFFFFFF; // 2^29 - 1
 

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/AmfIO.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/AmfIO.java b/modules/core/src/flex/messaging/io/amf/AmfIO.java
index 56747db..6336a4d 100644
--- a/modules/core/src/flex/messaging/io/amf/AmfIO.java
+++ b/modules/core/src/flex/messaging/io/amf/AmfIO.java
@@ -24,7 +24,7 @@ import flex.messaging.io.TypeMarshallingContext;
 
 /**
  * Base class for Amf I/O. 
- * @exclude
+ *
  */
 abstract class AmfIO
 {
@@ -163,8 +163,6 @@ abstract class AmfIO
             return true;
         if (flex.messaging.io.ArrayCollection.class.equals(clazz))
             return true;
-        if (flex.messaging.io.ArrayList.class.equals(clazz))
-            return true;
-        return false;
+        return flex.messaging.io.ArrayList.class.equals(clazz);
     }
 }

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/TraitsInfo.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/TraitsInfo.java b/modules/core/src/flex/messaging/io/amf/TraitsInfo.java
index 63d8bf0..ccf4011 100644
--- a/modules/core/src/flex/messaging/io/amf/TraitsInfo.java
+++ b/modules/core/src/flex/messaging/io/amf/TraitsInfo.java
@@ -26,7 +26,7 @@ import java.util.List;
  * sending only the values of each instance of the type
  * as it occurs in the stream.
  *
- * @exclude
+ *
  */
 public class TraitsInfo
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/translator/TranslationException.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/translator/TranslationException.java b/modules/core/src/flex/messaging/io/amf/translator/TranslationException.java
index 7bd4db3..e4e41ed 100644
--- a/modules/core/src/flex/messaging/io/amf/translator/TranslationException.java
+++ b/modules/core/src/flex/messaging/io/amf/translator/TranslationException.java
@@ -19,7 +19,7 @@ package flex.messaging.io.amf.translator;
 import flex.messaging.MessageException;
 
 /**
- * @exclude
+ *
  */
 public class TranslationException extends MessageException
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/translator/decoder/ActionScriptDecoder.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/translator/decoder/ActionScriptDecoder.java b/modules/core/src/flex/messaging/io/amf/translator/decoder/ActionScriptDecoder.java
index 10a8f81..0ca6c36 100644
--- a/modules/core/src/flex/messaging/io/amf/translator/decoder/ActionScriptDecoder.java
+++ b/modules/core/src/flex/messaging/io/amf/translator/decoder/ActionScriptDecoder.java
@@ -24,7 +24,7 @@ import java.util.Date;
 /**
  * Decode an ActionScript object (of some type) to a Java object (of some type).
  *
- * @exclude
+ *
  */
 public abstract class ActionScriptDecoder
 {
@@ -92,10 +92,7 @@ public abstract class ActionScriptDecoder
 
         else if (o instanceof Date)
         {
-            if (SerializationContext.getSerializationContext().supportDatesByReference)
-                return true;
-            else
-                return false;
+            return SerializationContext.getSerializationContext().supportDatesByReference;
         }
 
         else if (o instanceof Calendar)

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/translator/decoder/ArrayDecoder.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/translator/decoder/ArrayDecoder.java b/modules/core/src/flex/messaging/io/amf/translator/decoder/ArrayDecoder.java
index a5c113d..8563504 100644
--- a/modules/core/src/flex/messaging/io/amf/translator/decoder/ArrayDecoder.java
+++ b/modules/core/src/flex/messaging/io/amf/translator/decoder/ArrayDecoder.java
@@ -23,7 +23,7 @@ import java.lang.reflect.Array;
 import java.util.Collection;
 
 /**
- * @exclude
+ *
  * Decodes native Java Array, java.util.Collection, or
  * java.lang.String (to char[]) instances to a native
  * Java Array instance with desired component type.

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/translator/decoder/BooleanDecoder.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/translator/decoder/BooleanDecoder.java b/modules/core/src/flex/messaging/io/amf/translator/decoder/BooleanDecoder.java
index 33b10ca..ae3e79d 100644
--- a/modules/core/src/flex/messaging/io/amf/translator/decoder/BooleanDecoder.java
+++ b/modules/core/src/flex/messaging/io/amf/translator/decoder/BooleanDecoder.java
@@ -25,7 +25,7 @@ package flex.messaging.io.amf.translator.decoder;
  * values will be interpreted as false.
  * </p>
  *
- * @exclude
+ *
  */
 public class BooleanDecoder extends ActionScriptDecoder
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/translator/decoder/CalendarDecoder.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/translator/decoder/CalendarDecoder.java b/modules/core/src/flex/messaging/io/amf/translator/decoder/CalendarDecoder.java
index 5e70ead..285775b 100644
--- a/modules/core/src/flex/messaging/io/amf/translator/decoder/CalendarDecoder.java
+++ b/modules/core/src/flex/messaging/io/amf/translator/decoder/CalendarDecoder.java
@@ -31,7 +31,7 @@ import java.util.Date;
  * pointers to Date instances in our representation of an ActionScript
  * object graph.
  *
- * @exclude
+ *
  */
 public class CalendarDecoder extends ActionScriptDecoder
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/translator/decoder/CharacterDecoder.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/translator/decoder/CharacterDecoder.java b/modules/core/src/flex/messaging/io/amf/translator/decoder/CharacterDecoder.java
index 509c407..b58c37f 100644
--- a/modules/core/src/flex/messaging/io/amf/translator/decoder/CharacterDecoder.java
+++ b/modules/core/src/flex/messaging/io/amf/translator/decoder/CharacterDecoder.java
@@ -24,7 +24,7 @@ package flex.messaging.io.amf.translator.decoder;
  * character in the String will be used.
  * </p>
  *
- * @exclude
+ *
  */
 public class CharacterDecoder extends ActionScriptDecoder
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/translator/decoder/CollectionDecoder.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/translator/decoder/CollectionDecoder.java b/modules/core/src/flex/messaging/io/amf/translator/decoder/CollectionDecoder.java
index a8c78f1..f733adc 100644
--- a/modules/core/src/flex/messaging/io/amf/translator/decoder/CollectionDecoder.java
+++ b/modules/core/src/flex/messaging/io/amf/translator/decoder/CollectionDecoder.java
@@ -50,7 +50,7 @@ import java.util.TreeSet;
  *
  * @see java.util.Collection
  *
- * @exclude
+ *
  */
 public class CollectionDecoder extends ActionScriptDecoder
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/translator/decoder/DateDecoder.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/translator/decoder/DateDecoder.java b/modules/core/src/flex/messaging/io/amf/translator/decoder/DateDecoder.java
index c6da90a..5aac5cb 100644
--- a/modules/core/src/flex/messaging/io/amf/translator/decoder/DateDecoder.java
+++ b/modules/core/src/flex/messaging/io/amf/translator/decoder/DateDecoder.java
@@ -30,7 +30,7 @@ import java.util.Calendar;
  * pointers to Date instances in our representation of an ActionScript
  * object graph.
  *
- * @exclude
+ *
  */
 public class DateDecoder extends ActionScriptDecoder
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/translator/decoder/DecoderFactory.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/translator/decoder/DecoderFactory.java b/modules/core/src/flex/messaging/io/amf/translator/decoder/DecoderFactory.java
index a1812fd..71f366b 100644
--- a/modules/core/src/flex/messaging/io/amf/translator/decoder/DecoderFactory.java
+++ b/modules/core/src/flex/messaging/io/amf/translator/decoder/DecoderFactory.java
@@ -31,7 +31,7 @@ import java.util.Map;
  *
  * @see ActionScriptDecoder
  *
- * @exclude
+ *
  */
 public class DecoderFactory
 {
@@ -335,7 +335,7 @@ public class DecoderFactory
 
         if (encodedObject instanceof ASObject)
         {
-            typed = TypeMarshallingContext.getType((ASObject)encodedObject) != null;
+            typed = TypeMarshallingContext.getType(encodedObject) != null;
         }
 
         return typed;

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/translator/decoder/EnumDecoder.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/translator/decoder/EnumDecoder.java b/modules/core/src/flex/messaging/io/amf/translator/decoder/EnumDecoder.java
index b566b83..926ae26 100644
--- a/modules/core/src/flex/messaging/io/amf/translator/decoder/EnumDecoder.java
+++ b/modules/core/src/flex/messaging/io/amf/translator/decoder/EnumDecoder.java
@@ -18,7 +18,7 @@ package flex.messaging.io.amf.translator.decoder;
 
 /**
  * Decode an ActionScript enumeration object (generally a string) to a Java enum.
- * @exclude
+ *
  */
 public class EnumDecoder extends ActionScriptDecoder
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/translator/decoder/MapDecoder.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/translator/decoder/MapDecoder.java b/modules/core/src/flex/messaging/io/amf/translator/decoder/MapDecoder.java
index 2f0417e..60cbe15 100644
--- a/modules/core/src/flex/messaging/io/amf/translator/decoder/MapDecoder.java
+++ b/modules/core/src/flex/messaging/io/amf/translator/decoder/MapDecoder.java
@@ -26,7 +26,7 @@ import java.util.TreeMap;
 /**
  * Decodes an ActionScript object to a Java Map.
  *
- * @exclude
+ *
  */
 public class MapDecoder extends ActionScriptDecoder
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/translator/decoder/NativeDecoder.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/translator/decoder/NativeDecoder.java b/modules/core/src/flex/messaging/io/amf/translator/decoder/NativeDecoder.java
index e37a7f5..8f9a775 100644
--- a/modules/core/src/flex/messaging/io/amf/translator/decoder/NativeDecoder.java
+++ b/modules/core/src/flex/messaging/io/amf/translator/decoder/NativeDecoder.java
@@ -19,7 +19,7 @@ package flex.messaging.io.amf.translator.decoder;
 /**
  * Decodes an ActionScript native object to a Java native object.
  *
- * @exclude
+ *
  */
 public class NativeDecoder extends ActionScriptDecoder
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/translator/decoder/NullDecoder.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/translator/decoder/NullDecoder.java b/modules/core/src/flex/messaging/io/amf/translator/decoder/NullDecoder.java
index 0ea6fb8..26e1b7d 100644
--- a/modules/core/src/flex/messaging/io/amf/translator/decoder/NullDecoder.java
+++ b/modules/core/src/flex/messaging/io/amf/translator/decoder/NullDecoder.java
@@ -17,7 +17,7 @@
 package flex.messaging.io.amf.translator.decoder;
 
 /**
- * @exclude
+ *
  */
 public class NullDecoder extends ActionScriptDecoder
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/translator/decoder/NumberDecoder.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/translator/decoder/NumberDecoder.java b/modules/core/src/flex/messaging/io/amf/translator/decoder/NumberDecoder.java
index e9bf158..90ce221 100644
--- a/modules/core/src/flex/messaging/io/amf/translator/decoder/NumberDecoder.java
+++ b/modules/core/src/flex/messaging/io/amf/translator/decoder/NumberDecoder.java
@@ -24,7 +24,7 @@ import flex.messaging.io.SerializationContext;
 /**
  * Decode an ActionScript type (a string or a double) to a Java number (of any type).
  *
- * @exclude
+ *
  */
 public class NumberDecoder extends ActionScriptDecoder
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/translator/decoder/ReferenceAwareArrayDecoder.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/translator/decoder/ReferenceAwareArrayDecoder.java b/modules/core/src/flex/messaging/io/amf/translator/decoder/ReferenceAwareArrayDecoder.java
index 5262ec2..7101cfe 100644
--- a/modules/core/src/flex/messaging/io/amf/translator/decoder/ReferenceAwareArrayDecoder.java
+++ b/modules/core/src/flex/messaging/io/amf/translator/decoder/ReferenceAwareArrayDecoder.java
@@ -22,7 +22,7 @@ import java.util.Collection;
 import flex.messaging.io.TypeMarshallingContext;
 
 /**
- * @exclude
+ *
  */
 public class ReferenceAwareArrayDecoder extends ArrayDecoder
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/translator/decoder/ReferenceAwareCalendarDecoder.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/translator/decoder/ReferenceAwareCalendarDecoder.java b/modules/core/src/flex/messaging/io/amf/translator/decoder/ReferenceAwareCalendarDecoder.java
index 569bbea..e9d6dfb 100644
--- a/modules/core/src/flex/messaging/io/amf/translator/decoder/ReferenceAwareCalendarDecoder.java
+++ b/modules/core/src/flex/messaging/io/amf/translator/decoder/ReferenceAwareCalendarDecoder.java
@@ -20,7 +20,7 @@ import flex.messaging.io.SerializationContext;
 import flex.messaging.io.TypeMarshallingContext;
 
 /**
- * @exclude
+ *
  */
 public class ReferenceAwareCalendarDecoder extends CalendarDecoder
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/translator/decoder/ReferenceAwareCollectionDecoder.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/translator/decoder/ReferenceAwareCollectionDecoder.java b/modules/core/src/flex/messaging/io/amf/translator/decoder/ReferenceAwareCollectionDecoder.java
index db8fc4f..60b5681 100644
--- a/modules/core/src/flex/messaging/io/amf/translator/decoder/ReferenceAwareCollectionDecoder.java
+++ b/modules/core/src/flex/messaging/io/amf/translator/decoder/ReferenceAwareCollectionDecoder.java
@@ -30,7 +30,7 @@ import java.lang.reflect.Array;
  * Note that tracking references is an expensive exercise and will
  * scale poorly with larger amounts of data.`
  *
- * @exclude
+ *
  */
 public class ReferenceAwareCollectionDecoder extends CollectionDecoder
 {
@@ -49,7 +49,7 @@ public class ReferenceAwareCollectionDecoder extends CollectionDecoder
 
     protected Collection decodeCollection(Collection shell, Object encodedObject)
     {
-        Collection decodedCollection = (Collection)shell;
+        Collection decodedCollection = shell;
         Object decodedObject = null;
         Object obj = null;
 

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/translator/decoder/ReferenceAwareDateDecoder.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/translator/decoder/ReferenceAwareDateDecoder.java b/modules/core/src/flex/messaging/io/amf/translator/decoder/ReferenceAwareDateDecoder.java
index 290667d..849a85e 100644
--- a/modules/core/src/flex/messaging/io/amf/translator/decoder/ReferenceAwareDateDecoder.java
+++ b/modules/core/src/flex/messaging/io/amf/translator/decoder/ReferenceAwareDateDecoder.java
@@ -20,7 +20,7 @@ import flex.messaging.io.SerializationContext;
 import flex.messaging.io.TypeMarshallingContext;
 
 /**
- * @exclude
+ *
  */
 public class ReferenceAwareDateDecoder extends DateDecoder
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/translator/decoder/ReferenceAwareMapDecoder.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/translator/decoder/ReferenceAwareMapDecoder.java b/modules/core/src/flex/messaging/io/amf/translator/decoder/ReferenceAwareMapDecoder.java
index f2933ba..85dcb85 100644
--- a/modules/core/src/flex/messaging/io/amf/translator/decoder/ReferenceAwareMapDecoder.java
+++ b/modules/core/src/flex/messaging/io/amf/translator/decoder/ReferenceAwareMapDecoder.java
@@ -22,7 +22,7 @@ import java.util.Map;
 import java.util.Iterator;
 
 /**
- * @exclude
+ *
  */
 public class ReferenceAwareMapDecoder extends MapDecoder
 {

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/56d1a01d/modules/core/src/flex/messaging/io/amf/translator/decoder/ReferenceAwareTypedObjectDecoder.java
----------------------------------------------------------------------
diff --git a/modules/core/src/flex/messaging/io/amf/translator/decoder/ReferenceAwareTypedObjectDecoder.java b/modules/core/src/flex/messaging/io/amf/translator/decoder/ReferenceAwareTypedObjectDecoder.java
index 66656f6..4d38d38 100644
--- a/modules/core/src/flex/messaging/io/amf/translator/decoder/ReferenceAwareTypedObjectDecoder.java
+++ b/modules/core/src/flex/messaging/io/amf/translator/decoder/ReferenceAwareTypedObjectDecoder.java
@@ -26,7 +26,7 @@ import flex.messaging.io.TypeMarshallingContext;
 import flex.messaging.io.amf.translator.TranslationException;
 
 /**
- * @exclude
+ *
  */
 public class ReferenceAwareTypedObjectDecoder extends TypedObjectDecoder
 {