You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ja...@apache.org on 2005/06/29 14:41:19 UTC

svn commit: r202360 [2/2] - in /webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc: ./ holders/ security/ soap/

Modified: webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/Stub.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/Stub.java?rev=202360&r1=202359&r2=202360&view=diff
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/Stub.java (original)
+++ webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/Stub.java Wed Jun 29 05:41:18 2005
@@ -18,8 +18,12 @@
 
 /**
  * Interface Stub
- * The interface javax.xml.rpc.Stub is the common base interface for the stub classes. All generated stub classes are required to implement the javax.xml.rpc.Stub interface. An instance of a stub class represents a client side proxy or stub instance for the target service endpoint.
- * The javax.xml.rpc.Stub interface provides an extensible property mechanism for the dynamic configuration of a stub instance.
+ * The interface javax.xml.rpc.Stub is the common base interface for the stub 
+ * classes. All generated stub classes are required to implement the 
+ * javax.xml.rpc.Stub interface. An instance of a stub class represents a 
+ * client side proxy or stub instance for the target service endpoint.
+ * The javax.xml.rpc.Stub interface provides an extensible property mechanism 
+ * for the dynamic configuration of a stub instance.
  * 
  * @version 1.0
  * @author sunja07
@@ -28,31 +32,50 @@
 	
 	/**
 	 * Method _setProperty
-	 * Sets the name and value of a configuration property for this Stub instance. This method is retained for backwards compatibility, new code should use getRequestContext().setProperty(...) instead. If the Stub instances contains a value of the same property, the old value is replaced.
-	 * Note that the _setProperty method may not perform validity check on a configured property value. An example is the standard property for the target service endpoint address that is not checked for validity in the _setProperty method. In this case, stub configuration errors are detected at the remote method invocation.
+	 * Sets the name and value of a configuration property for this Stub 
+	 * instance. This method is retained for backwards compatibility, new code 
+	 * should use getRequestContext().setProperty(...) instead. If the Stub 
+	 * instances contains a value of the same property, the old value is 
+	 * replaced.
+	 * Note that the _setProperty method may not perform validity check on a 
+	 * configured property value. An example is the standard property for the 
+	 * target service endpoint address that is not checked for validity in the 
+	 * _setProperty method. In this case, stub configuration errors are 
+	 * detected at the remote method invocation.
 	 * 
 	 * @param name - Name of the configuration property
 	 * @param value - Value of the property 
 	 * @throws JAXRPCException - 
-	 * 1. If an optional standard property name is specified, however this Stub implementation class does not support the configuration of this property. 
-	 * 2. If an invalid or unsupported property name is specified or if a value of mismatched property type is passed. 
+	 * 1. If an optional standard property name is specified, however this Stub
+	 *  implementation class does not support the configuration of this 
+	 *  property. 
+	 * 2. If an invalid or unsupported property name is specified or if a value
+	 *  of mismatched property type is passed. 
 	 * 3. If there is any error in the configuration of a valid property.
 	 */
-	void _setProperty(java.lang.String name, java.lang.Object value) throws JAXRPCException;
+	void _setProperty(java.lang.String name, java.lang.Object value) throws 
+	JAXRPCException;
 	
 	/**
 	 * Method _getProperty
-	 * Gets the value of a specific configuration property. This method is retained for backwards compatibility, new code should use getRequestContext().getProperty(...) instead.
+	 * Gets the value of a specific configuration property. This method is 
+	 * retained for backwards compatibility, new code should use 
+	 * getRequestContext().getProperty(...) instead.
 	 * 
 	 * @param name - Name of the property whose value is to be retrieved 
 	 * @return Value of the configuration property 
-	 * @throws JAXRPCException - if an invalid or unsupported property name is passed.
+	 * @throws JAXRPCException - if an invalid or unsupported property name 
+	 * is passed.
 	 */
-	java.lang.Object _getProperty(java.lang.String name) throws JAXRPCException;
+	java.lang.Object _getProperty(java.lang.String name) throws 
+	JAXRPCException;
 	
 	/**
 	 * Method _getPropertyNames
-	 * Returns an Iterator view of the names of the properties that can be configured on this stub instance. This method is retained for backwards compatibility, new code should use getRequestContext().getPropertyNames(...) instead.
+	 * Returns an Iterator view of the names of the properties that can be 
+	 * configured on this stub instance. This method is retained for backwards 
+	 * compatibility, new code should use getRequestContext().getPropertyNames(...)
+	 * instead.
 	 * 
 	 * @return Iterator for the property names of the type java.lang.String
 	 */

Modified: webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/BigDecimalHolder.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/BigDecimalHolder.java?rev=202360&r1=202359&r2=202360&view=diff
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/BigDecimalHolder.java (original)
+++ webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/BigDecimalHolder.java Wed Jun 29 05:41:18 2005
@@ -33,7 +33,8 @@
 	
 	/**
 	 * Constructor
-	 * Sets the value of <code>value</code> property to the given input parameter value
+	 * Sets the value of <code>value</code> property to the given input 
+	 * parameter value
 	 * @param myBigDecimal
 	 */
 	public BigDecimalHolder(java.math.BigDecimal myBigDecimal) {}

Modified: webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/BigIntegerHolder.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/BigIntegerHolder.java?rev=202360&r1=202359&r2=202360&view=diff
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/BigIntegerHolder.java (original)
+++ webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/BigIntegerHolder.java Wed Jun 29 05:41:18 2005
@@ -36,7 +36,8 @@
 	
 	/**
 	 * Constructor
-	 * Sets the value of <code>value</code> property to the given input parameter value
+	 * Sets the value of <code>value</code> property to the given input 
+	 * parameter value
 	 * @param myBigInteger
 	 */
 	public BigIntegerHolder(java.math.BigInteger myBigInteger){}

Modified: webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/BooleanHolder.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/BooleanHolder.java?rev=202360&r1=202359&r2=202360&view=diff
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/BooleanHolder.java (original)
+++ webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/BooleanHolder.java Wed Jun 29 05:41:18 2005
@@ -36,7 +36,8 @@
 	
 	/**
 	 * Constructor
-	 * Sets the value of <code>value</code> property to the given input parameter value
+	 * Sets the value of <code>value</code> property to the given input 
+	 * parameter value
 	 * @param myboolean
 	 */
 	public BooleanHolder(boolean myboolean) {}

Modified: webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/BooleanWrapperHolder.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/BooleanWrapperHolder.java?rev=202360&r1=202359&r2=202360&view=diff
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/BooleanWrapperHolder.java (original)
+++ webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/BooleanWrapperHolder.java Wed Jun 29 05:41:18 2005
@@ -36,7 +36,8 @@
 	
 	/**
 	 * Constructor
-	 * Sets the value of <code>value</code> property to the given input parameter value
+	 * Sets the value of <code>value</code> property to the given input 
+	 * parameter value
 	 * @param myboolean
 	 */
 	public BooleanWrapperHolder(java.lang.Boolean myboolean){}

Modified: webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/ByteArrayHolder.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/ByteArrayHolder.java?rev=202360&r1=202359&r2=202360&view=diff
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/ByteArrayHolder.java (original)
+++ webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/ByteArrayHolder.java Wed Jun 29 05:41:18 2005
@@ -36,7 +36,8 @@
 	
 	/**
 	 * Constructor
-	 * Sets the value of <code>value</code> property to the given input parameter value
+	 * Sets the value of <code>value</code> property to the given input 
+	 * parameter value
 	 * @param mybyteArray
 	 */
 	public ByteArrayHolder(byte[] mybyteArray) {}

Modified: webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/ByteHolder.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/ByteHolder.java?rev=202360&r1=202359&r2=202360&view=diff
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/ByteHolder.java (original)
+++ webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/ByteHolder.java Wed Jun 29 05:41:18 2005
@@ -36,7 +36,8 @@
 	
 	/**
 	 * Constructor
-	 * Sets the value of <code>value</code> property to the given input parameter value
+	 * Sets the value of <code>value</code> property to the given input 
+	 * parameter value
 	 * @param mybyte
 	 */
 	public ByteHolder(byte mybyte){}

Modified: webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/ByteWrapperHolder.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/ByteWrapperHolder.java?rev=202360&r1=202359&r2=202360&view=diff
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/ByteWrapperHolder.java (original)
+++ webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/ByteWrapperHolder.java Wed Jun 29 05:41:18 2005
@@ -36,7 +36,8 @@
 	
 	/**
 	 * Constructor
-	 * Sets the value of <code>value</code> property to the given input parameter value
+	 * Sets the value of <code>value</code> property to the given input 
+	 * parameter value
 	 * @param mybyte
 	 */
 	public ByteWrapperHolder(java.lang.Byte mybyte) {}

Modified: webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/CalendarHolder.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/CalendarHolder.java?rev=202360&r1=202359&r2=202360&view=diff
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/CalendarHolder.java (original)
+++ webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/CalendarHolder.java Wed Jun 29 05:41:18 2005
@@ -36,7 +36,8 @@
 	
 	/**
 	 * Constructor
-	 * Sets the value of <code>value</code> property to the given input parameter value
+	 * Sets the value of <code>value</code> property to the given input 
+	 * parameter value
 	 * @param myCalendar
 	 */
 	public CalendarHolder(java.util.Calendar myCalendar){}

Modified: webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/DoubleHolder.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/DoubleHolder.java?rev=202360&r1=202359&r2=202360&view=diff
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/DoubleHolder.java (original)
+++ webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/DoubleHolder.java Wed Jun 29 05:41:18 2005
@@ -36,7 +36,8 @@
 	
 	/**
 	 * Constructor
-	 * Sets the value of <code>value</code> property to the given input parameter value
+	 * Sets the value of <code>value</code> property to the given input 
+	 * parameter value
 	 * @param mydouble
 	 */
 	public DoubleHolder(double mydouble){}

Modified: webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/DoubleWrapperHolder.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/DoubleWrapperHolder.java?rev=202360&r1=202359&r2=202360&view=diff
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/DoubleWrapperHolder.java (original)
+++ webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/DoubleWrapperHolder.java Wed Jun 29 05:41:18 2005
@@ -36,7 +36,8 @@
 	
 	/**
 	 * Constructor
-	 * Sets the value of <code>value</code> property to the given input parameter value
+	 * Sets the value of <code>value</code> property to the given input 
+	 * parameter value
 	 * @param mydouble
 	 */
 	public DoubleWrapperHolder(java.lang.Double mydouble){}

Modified: webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/FloatHolder.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/FloatHolder.java?rev=202360&r1=202359&r2=202360&view=diff
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/FloatHolder.java (original)
+++ webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/FloatHolder.java Wed Jun 29 05:41:18 2005
@@ -36,7 +36,8 @@
 	
 	/**
 	 * Constructor
-	 * Sets the value of <code>value</code> property to the given input parameter value
+	 * Sets the value of <code>value</code> property to the given input 
+	 * parameter value
 	 * @param myfloat
 	 */
 	public FloatHolder(float myfloat){}

Modified: webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/FloatWrapperHolder.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/FloatWrapperHolder.java?rev=202360&r1=202359&r2=202360&view=diff
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/FloatWrapperHolder.java (original)
+++ webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/FloatWrapperHolder.java Wed Jun 29 05:41:18 2005
@@ -36,7 +36,8 @@
 	
 	/**
 	 * Constructor
-	 * Sets the value of <code>value</code> property to the given input parameter value
+	 * Sets the value of <code>value</code> property to the given input 
+	 * parameter value
 	 * @param myfloat
 	 */
 	public FloatWrapperHolder(java.lang.Float myfloat){}

Modified: webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/GenericHolder.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/GenericHolder.java?rev=202360&r1=202359&r2=202360&view=diff
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/GenericHolder.java (original)
+++ webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/GenericHolder.java Wed Jun 29 05:41:18 2005
@@ -37,7 +37,8 @@
 	
 	/**
 	 * Constructor
-	 * Sets the value of <code>value</code> property to the given input parameter value
+	 * Sets the value of <code>value</code> property to the given input 
+	 * parameter value
 	 * @param v
 	 */
 	public GenericHolder(T v){}

Modified: webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/Holder.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/Holder.java?rev=202360&r1=202359&r2=202360&view=diff
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/Holder.java (original)
+++ webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/Holder.java Wed Jun 29 05:41:18 2005
@@ -18,7 +18,9 @@
 
 /**
  * Interface Holder
- * The java.xml.rpc.holders.Holder interface represents the base interface for both standard and generated Holder classes. A generated Holder class is required to implement this Holder interface. 
+ * The java.xml.rpc.holders.Holder interface represents the base interface 
+ * for both standard and generated Holder classes. A generated Holder class 
+ * is required to implement this Holder interface. 
  * 
  * @version 1.0
  * @author sunja07

Modified: webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/IntHolder.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/IntHolder.java?rev=202360&r1=202359&r2=202360&view=diff
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/IntHolder.java (original)
+++ webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/IntHolder.java Wed Jun 29 05:41:18 2005
@@ -36,7 +36,8 @@
 	
 	/**
 	 * Constructor
-	 * Sets the value of <code>value</code> property to the given input parameter value
+	 * Sets the value of <code>value</code> property to the given input 
+	 * parameter value
 	 * @param myint
 	 */
 	public IntHolder(int myint) {}

Modified: webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/IntegerWrapperHolder.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/IntegerWrapperHolder.java?rev=202360&r1=202359&r2=202360&view=diff
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/IntegerWrapperHolder.java (original)
+++ webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/IntegerWrapperHolder.java Wed Jun 29 05:41:18 2005
@@ -36,7 +36,8 @@
 	
 	/**
 	 * Constructor
-	 * Sets the value of <code>value</code> property to the given input parameter value
+	 * Sets the value of <code>value</code> property to the given input 
+	 * parameter value
 	 * @param myint
 	 */
 	public IntegerWrapperHolder(java.lang.Integer myint) {}

Modified: webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/LongHolder.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/LongHolder.java?rev=202360&r1=202359&r2=202360&view=diff
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/LongHolder.java (original)
+++ webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/LongHolder.java Wed Jun 29 05:41:18 2005
@@ -36,7 +36,8 @@
 	
 	/**
 	 * Constructor
-	 * Sets the value of <code>value</code> property to the given input parameter value
+	 * Sets the value of <code>value</code> property to the given input 
+	 * parameter value
 	 * @param mylong
 	 */
 	public LongHolder(long mylong){}

Modified: webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/LongWrapperHolder.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/LongWrapperHolder.java?rev=202360&r1=202359&r2=202360&view=diff
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/LongWrapperHolder.java (original)
+++ webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/LongWrapperHolder.java Wed Jun 29 05:41:18 2005
@@ -36,7 +36,8 @@
 	
 	/**
 	 * Constructor
-	 * Sets the value of <code>value</code> property to the given input parameter value
+	 * Sets the value of <code>value</code> property to the given input 
+	 * parameter value
 	 * @param mylong
 	 */
 	public LongWrapperHolder(java.lang.Long mylong) {}

Modified: webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/ObjectHolder.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/ObjectHolder.java?rev=202360&r1=202359&r2=202360&view=diff
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/ObjectHolder.java (original)
+++ webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/ObjectHolder.java Wed Jun 29 05:41:18 2005
@@ -36,7 +36,8 @@
 	
 	/**
 	 * Constructor
-	 * Sets the value of <code>value</code> property to the given input parameter value
+	 * Sets the value of <code>value</code> property to the given input 
+	 * parameter value
 	 * @param value
 	 */
 	public ObjectHolder(java.lang.Object value){}

Modified: webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/QNameHolder.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/QNameHolder.java?rev=202360&r1=202359&r2=202360&view=diff
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/QNameHolder.java (original)
+++ webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/QNameHolder.java Wed Jun 29 05:41:18 2005
@@ -36,7 +36,8 @@
 	
 	/**
 	 * Constructor
-	 * Sets the value of <code>value</code> property to the given input parameter value
+	 * Sets the value of <code>value</code> property to the given input 
+	 * parameter value
 	 * @param myQName
 	 */
 	public QNameHolder(javax.xml.namespace.QName myQName){}

Modified: webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/ShortHolder.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/ShortHolder.java?rev=202360&r1=202359&r2=202360&view=diff
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/ShortHolder.java (original)
+++ webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/ShortHolder.java Wed Jun 29 05:41:18 2005
@@ -36,7 +36,8 @@
 	
 	/**
 	 * Constructor
-	 * Sets the value of <code>value</code> property to the given input parameter value
+	 * Sets the value of <code>value</code> property to the given input 
+	 * parameter value
 	 * @param myshort
 	 */
 	public ShortHolder(short myshort){}

Modified: webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/ShortWrapperHolder.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/ShortWrapperHolder.java?rev=202360&r1=202359&r2=202360&view=diff
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/ShortWrapperHolder.java (original)
+++ webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/ShortWrapperHolder.java Wed Jun 29 05:41:18 2005
@@ -36,7 +36,8 @@
 	
 	/**
 	 * Constructor
-	 * Sets the value of <code>value</code> property to the given input parameter value
+	 * Sets the value of <code>value</code> property to the given input 
+	 * parameter value
 	 * @param myshort
 	 */
 	public ShortWrapperHolder(java.lang.Short myshort){}

Modified: webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/StringHolder.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/StringHolder.java?rev=202360&r1=202359&r2=202360&view=diff
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/StringHolder.java (original)
+++ webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/holders/StringHolder.java Wed Jun 29 05:41:18 2005
@@ -36,7 +36,8 @@
 	
 	/**
 	 * Constructor
-	 * Sets the value of <code>value</code> property to the given input parameter value
+	 * Sets the value of <code>value</code> property to the given input 
+	 * parameter value
 	 * @param myString
 	 */
 	public StringHolder(java.lang.String myString){}

Modified: webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/security/SecurityConfiguration.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/security/SecurityConfiguration.java?rev=202360&r1=202359&r2=202360&view=diff
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/security/SecurityConfiguration.java (original)
+++ webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/security/SecurityConfiguration.java Wed Jun 29 05:41:18 2005
@@ -18,7 +18,8 @@
 
 /**
  * Interface SecurityConfiguration
- * The interface SecurityConfiguration abstracts the message security configuration.
+ * The interface SecurityConfiguration abstracts the message security 
+ * configuration.
  * 
  * @version 1.0
  * @author sunja07
@@ -29,24 +30,32 @@
 	/**
 	 * Abstract security features. 
 	 * 	Integrity 
-	 * 		Provide assurance that the data received by a recipient is the same as the data sent by the originator 
+	 * 		Provide assurance that the data received by a recipient is the 
+	 * 		same as the data sent by the originator 
 	 * 	Confidentiality
-	 * 		Protect data from being read by anyone except the intended recipient 
+	 * 		Protect data from being read by anyone except the intended 
+	 * 		recipient 
 	 * 	Authentication 
-	 * 		Establish or constrain the identity of the source and/or recipient of a message 
+	 * 		Establish or constrain the identity of the source and/or recipient
+	 * 		of a message 
 	 */
-	public static enum SecurityFeature { //extends java.lang.Enum <SecurityConfiguration.SecurityFeature> {
+	public static enum SecurityFeature { 
+		//extends java.lang.Enum <SecurityConfiguration.SecurityFeature> {
 		
 		CONFIDENTIALITY , INTEGRITY , AUTHENTICATION ;
 		
 		/**
 		 * Method values
-		 * Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
+		 * Returns an array containing the constants of this enum type, in 
+		 * the order they're declared. This method may be used to iterate 
+		 * over the constants as follows:
 		 * <code>
-		 * 		for(SecurityConfiguration.SecurityFeature c : SecurityConfiguration.SecurityFeature.values())
+		 * 		for(SecurityConfiguration.SecurityFeature c 
+		 * 			: SecurityConfiguration.SecurityFeature.values())
 		 * 			System.out.println(c);
 		 * </code>
-		 * @return an array containing the constants of this enum type, in the order they're declared
+		 * @return an array containing the constants of this enum type, in 
+		 * the order they're declared
 		 */
 /*		public static final SecurityConfiguration.SecurityFeature[] values() {
 			
@@ -54,10 +63,14 @@
 */		
 		/**
 		 * Method valueOf
-		 * Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
+		 * Returns the enum constant of this type with the specified name. The 
+		 * string must match exactly an identifier used to declare an enum 
+		 * constant in this type. (Extraneous whitespace characters are not 
+		 * permitted.)
 		 * @param name - the name of the enum constant to be returned.
 		 * @return the enum constant with the specified name 
-		 * @throws java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
+		 * @throws java.lang.IllegalArgumentException - if this enum type has 
+		 * no constant with the specified name
 		 */
 /*		public static SecurityConfiguration.SecurityFeature valueOf(java.lang.String name) throws java.lang.IllegalArgumentException {
 			
@@ -69,7 +82,8 @@
 	 * Method setOutboundConfigId
 	 * Sets the configuration for outbound messages. 
 	 * 
-	 * @param configId - Logical identifier of the configuration entry that describes how to fulfil the requested security features.
+	 * @param configId - Logical identifier of the configuration entry that 
+	 * describes how to fulfil the requested security features.
 	 */
 	void setOutboundConfigId(java.lang.String configId);
 	
@@ -77,7 +91,8 @@
 	 * Method getOutboundConfigId
 	 * Gets the configuration for outbound messages.
 	 * 
-	 * @return Logical identifier of the configuration entry that describes how to fulfil the requested security features.
+	 * @return Logical identifier of the configuration entry that describes 
+	 * how to fulfil the requested security features.
 	 */
 	java.lang.String getOutboundConfigId();
 	
@@ -85,7 +100,8 @@
 	 * Method setInboundConfigId
 	 * Sets the configuration for inbound messages.
 	 * 
-	 * @param configId - Logical identifier of the configuration entry that describes how to fulfil the requested security features.
+	 * @param configId - Logical identifier of the configuration entry that 
+	 * describes how to fulfil the requested security features.
 	 */
 	void setInboundConfigId(java.lang.String configId);
 	
@@ -93,7 +109,8 @@
 	 * Method getInboundConfigId
 	 * Gets the configuration for inbound messages.
 	 * 
-	 * @return Logical identifier of the configuration entry that describes how to fulfil the requested security features.
+	 * @return Logical identifier of the configuration entry that describes 
+	 * how to fulfil the requested security features.
 	 */
 	java.lang.String getInboundConfigId();
 	
@@ -131,17 +148,22 @@
 	
 	/**
 	 * Method setCallbackHandler
-	 * Sets the JAAS callback handler that may be used to obtain security information from the application.
+	 * Sets the JAAS callback handler that may be used to obtain security 
+	 * information from the application.
 	 * 
-	 * @param callbackHandler - The CallbackHandlerinstance to use to retrieve security information from the application.
+	 * @param callbackHandler - The CallbackHandlerinstance to use to 
+	 * retrieve security information from the application.
 	 */
-	void setCallbackHandler(javax.security.auth.callback.CallbackHandler callbackHandler);
+	void setCallbackHandler(javax.security.auth.callback.CallbackHandler 
+			callbackHandler);
 	
 	/**
 	 * Method getCallbackHandler
-	 * Gets the JAAS callback handler that may be used to obtain security information from the application.
+	 * Gets the JAAS callback handler that may be used to obtain security 
+	 * information from the application.
 	 * 
-	 * @return The CallbackHandlerinstance to use to retrieve security information from the application.
+	 * @return The CallbackHandlerinstance to use to retrieve security 
+	 * information from the application.
 	 */
 	javax.security.auth.callback.CallbackHandler getCallbackHandler();
 

Modified: webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/soap/SOAPBinding.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/soap/SOAPBinding.java?rev=202360&r1=202359&r2=202360&view=diff
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/soap/SOAPBinding.java (original)
+++ webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/soap/SOAPBinding.java Wed Jun 29 05:41:18 2005
@@ -20,7 +20,8 @@
 
 /**
  * Interface SOAPBinding
- * The javax.xml.rpc.SOAPBinding interface is an abstraction for the JAX-RPC SOAP binding.
+ * The javax.xml.rpc.SOAPBinding interface is an abstraction for the JAX-RPC 
+ * SOAP binding.
  *
  * @version 1.0
  * @author sunja07
@@ -30,12 +31,14 @@
     /**
      * A constant representing the identity of the SOAP 1.1 over HTTP binding.
      */
-    static final java.lang.String SOAP11HTTP_BINDING = "http://schemas.xmlsoap.org/wsdl/soap/http";
+    static final java.lang.String SOAP11HTTP_BINDING = 
+    	"http://schemas.xmlsoap.org/wsdl/soap/http";
 
     /**
      * A constant representing the identity of the SOAP 1.2 over HTTP binding.
      */
-    static final java.lang.String SOAP12HTTP_BINDING = "http://www.w3.org/2003/05/soap/bindings/HTTP/";
+    static final java.lang.String SOAP12HTTP_BINDING = 
+    	"http://www.w3.org/2003/05/soap/bindings/HTTP/";
 
     /**
      * Method getRoles
@@ -50,7 +53,8 @@
      * Sets the roles played by the SOAP binding instance.
      *
      * @param roles - The set of roles played by the binding instance.
-     * @throws JAXRPCException - On an error in the configuration of the list of roles.
+     * @throws JAXRPCException - On an error in the configuration of the 
+     * list of roles.
      */
     void setRoles(java.util.Set<java.net.URI> roles);
 

Modified: webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/soap/SOAPFaultException.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/soap/SOAPFaultException.java?rev=202360&r1=202359&r2=202360&view=diff
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/soap/SOAPFaultException.java (original)
+++ webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/jaxws/src/javax/xml/rpc/soap/SOAPFaultException.java Wed Jun 29 05:41:18 2005
@@ -21,9 +21,14 @@
 
 /**
  * The SOAPFaultException exception represents a SOAP fault. 
- * The message part in the SOAP fault maps to the contents of faultdetail element accessible through the getDetail method on the SOAPFaultException. The method createDetail on the javax.xml.soap.SOAPFactory creates an instance of the javax.xml.soap.Detail.
- * The faultstring provides a human-readable description of the SOAP fault. The faultcode element provides an algorithmic mapping of the SOAP fault.
- * Refer to SOAP 1.1 and WSDL 1.1 specifications for more details of the SOAP faults.
+ * The message part in the SOAP fault maps to the contents of faultdetail 
+ * element accessible through the getDetail method on the SOAPFaultException. 
+ * The method createDetail on the javax.xml.soap.SOAPFactory creates an 
+ * instance of the javax.xml.soap.Detail.
+ * The faultstring provides a human-readable description of the SOAP fault. 
+ * The faultcode element provides an algorithmic mapping of the SOAP fault.
+ * Refer to SOAP 1.1 and WSDL 1.1 specifications for more details of the SOAP 
+ * faults.
  * 
  * @version 1.0
  * @author sunja07
@@ -45,7 +50,9 @@
 	
 	/**
 	 * Method getFaultCode
-	 * Gets the faultcode element. The faultcode element provides an algorithmic mechanism for identifying the fault. SOAP defines a small set of SOAP fault codes covering basic SOAP faults.
+	 * Gets the faultcode element. The faultcode element provides an 
+	 * algorithmic mechanism for identifying the fault. SOAP defines a small 
+	 * set of SOAP fault codes covering basic SOAP faults.
 	 * 
 	 * @return QName of the faultcode element
 	 */
@@ -55,7 +62,9 @@
 	
 	/**
 	 * Method getFaultString
-	 * Gets the faultstring element. The faultstring provides a human-readable description of the SOAP fault and is not intended for algorithmic processing.
+	 * Gets the faultstring element. The faultstring provides a human-readable
+	 * description of the SOAP fault and is not intended for algorithmic 
+	 * processing.
 	 * 
 	 * @return faultstring element of the SOAP fault
 	 */
@@ -65,7 +74,9 @@
 	
 	/**
 	 * Method getFaultActor
-	 * Gets the faultactor element. The faultactor element provides information about which SOAP node on the SOAP message path caused the fault to happen. It indicates the source of the fault.
+	 * Gets the faultactor element. The faultactor element provides 
+	 * information about which SOAP node on the SOAP message path caused the 
+	 * fault to happen. It indicates the source of the fault.
 	 * 
 	 * @return faultactor element of the SOAP fault
 	 */
@@ -75,7 +86,8 @@
 	
 	/**
 	 * Method getDetail
-	 * Gets the detail element. The detail element is intended for carrying application specific error information related to the SOAP Body. 
+	 * Gets the detail element. The detail element is intended for carrying 
+	 * application specific error information related to the SOAP Body. 
 	 * 
 	 * @return detail element of the SOAP fault
 	 */