dims 2002/06/14 08:49:42
Modified: java/src/javax/xml/rpc/handler Handler.java
HandlerChain.java HandlerRegistry.java
Log:
Cleaning up javadocs for the following packages: (Cut-n-Paste from 1.0 JAXRPC
javadoc)
javax.xml.rpc.handler
javax.xml.rpc.handler.soap
javax.xml.rpc.holders
javax.xml.rpc.server
javax.xml.rpc.soap
Revision Changes Path
1.6 +1 -1 xml-axis/java/src/javax/xml/rpc/handler/Handler.java
Index: Handler.java
===================================================================
RCS file: /home/cvs/xml-axis/java/src/javax/xml/rpc/handler/Handler.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- Handler.java 14 Jun 2002 15:37:44 -0000 1.5
+++ Handler.java 14 Jun 2002 15:49:42 -0000 1.6
@@ -136,7 +136,7 @@
/**
* The <code>handleResponse</code> method processes the response SOAP message.
*
- * @param context - MessageContext parameter provides access to
+ * @param context MessageContext parameter provides access to
* the response SOAP message
*
* @return boolean Indicates the processing mode
1.5 +10 -10 xml-axis/java/src/javax/xml/rpc/handler/HandlerChain.java
Index: HandlerChain.java
===================================================================
RCS file: /home/cvs/xml-axis/java/src/javax/xml/rpc/handler/HandlerChain.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- HandlerChain.java 14 Jun 2002 15:37:44 -0000 1.4
+++ HandlerChain.java 14 Jun 2002 15:49:42 -0000 1.5
@@ -74,7 +74,7 @@
/**
* The <code>handleRequest</code> method initiates the request
* processing for this handler chain.
- * @param context - MessageContext parameter provides access to
+ * @param context MessageContext parameter provides access to
* the request SOAP message.
* @return boolean Returns <code>true</code> if all handlers in
* chain have been processed. Returns <code>false</code>
@@ -82,7 +82,7 @@
* if a handler in the chain returned
* <code>false</code> from its handleRequest
* method.
- * @throws JAXRPCException - if any processing error happens
+ * @throws JAXRPCException if any processing error happens
*/
public boolean handleRequest(MessageContext context);
@@ -90,13 +90,13 @@
* The <code>handleResponse</code> method initiates the response
* processing for this handler chain.
*
- * @param context - MessageContext parameter provides access to the response
+ * @param context MessageContext parameter provides access to the response
* SOAP message.
* @return boolean Returns <code>true</code> if all handlers in
* chain have been processed. Returns <code>false</code>
* if a handler in the chain returned
* <code>false</code> from its handleResponse method.
- * @throws JAXRPCException - if any processing error happens
+ * @throws JAXRPCException if any processing error happens
*/
public boolean handleResponse(MessageContext context);
@@ -104,30 +104,30 @@
* The <code>handleFault</code> method initiates the SOAP
* fault processing for this handler chain.
*
- * @param context - MessageContext parameter provides access to the SOAP
+ * @param context MessageContext parameter provides access to the SOAP
* message.
* @return Returns boolean Returns <code>true</code> if all handlers in
* chain have been processed. Returns <code>false</code>
* if a handler in the chain returned
* <code>false</code> from its handleFault method.
- * @throws JAXRPCException - if any processing error happens
+ * @throws JAXRPCException if any processing error happens
*/
public boolean handleFault(MessageContext context);
/**
* Initializes the configuration for a HandlerChain.
*
- * @param config - Configuration for the initialization of this handler
+ * @param config Configuration for the initialization of this handler
* chain
*
- * @throws JAXRPCException - If any error during initialization
+ * @throws JAXRPCException If any error during initialization
*/
public void init(Map config);
/**
* Indicates the end of lifecycle for a HandlerChain.
*
- * @throws JAXRPCException - If any error during destroy
+ * @throws JAXRPCException If any error during destroy
*/
public void destroy();
@@ -143,7 +143,7 @@
* specification for the URI name for this special SOAP actor.
* There is no need to set this special role using this method.
*
- * @param soapActorNames - URIs for SOAP actor name
+ * @param soapActorNames URIs for SOAP actor name
*/
public void setRoles(String[] soapActorNames);
1.7 +1 -1 xml-axis/java/src/javax/xml/rpc/handler/HandlerRegistry.java
Index: HandlerRegistry.java
===================================================================
RCS file: /home/cvs/xml-axis/java/src/javax/xml/rpc/handler/HandlerRegistry.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- HandlerRegistry.java 14 Jun 2002 15:37:44 -0000 1.6
+++ HandlerRegistry.java 14 Jun 2002 15:49:42 -0000 1.7
@@ -70,7 +70,7 @@
* specified service endpoint. The returned handler chain is
* configured using the java.util.List interface. Each element
* in this list is required to be of the Java type
- * <code>javax.xml.rpc.handler.HandlerInfo
+ * <code>javax.xml.rpc.handler.HandlerInfo</code>
*
* @version 1.0
*/