Subversion Repositories XServices

Rev

Rev 177 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 177 Rev 195
Line 14... Line 14...
14
 *   limitations under the License.
14
 *   limitations under the License.
15
 */
15
 */
Line 16... Line 16...
16
 
16
 
Line 17... Line -...
17
package net.brutex.xservices.ws;
-
 
18
 
-
 
19
import java.util.ArrayList;
17
package net.brutex.xservices.ws;
20
 
18
 
21
import javax.jws.WebMethod;
19
import javax.jws.WebMethod;
22
import javax.jws.WebParam;
20
import javax.jws.WebParam;
Line 79... Line 77...
79
  @WSDLDocumentation("Remove any line feed and/ or carriage return characters")
77
  @WSDLDocumentation("Remove any line feed and/ or carriage return characters")
80
  public abstract String removeCRLF(
78
  public abstract String removeCRLF(
81
		  @WebParam(name="string") @XmlElement(required=true) String paramString)
79
		  @WebParam(name="string") @XmlElement(required=true) String paramString)
82
	throws XServicesFault;
80
	throws XServicesFault;
Line -... Line 81...
-
 
81
  
-
 
82
  @WebMethod(operationName="handleStringLists")
-
 
83
  @WSDLDocumentation("Tokenizes all strings and then adds/removes tokens to/ from basestring")
-
 
84
  public abstract String handleStringLists( 
-
 
85
		  @WebParam(name="basestring") @XmlElement(required=true) String paramBaseString,
-
 
86
		  @WebParam(name="addstring") @XmlElement(required=true) String paramAddString,
-
 
87
		  @WebParam(name="removestring") @XmlElement(required=true) String paramRemoveString,
-
 
88
		  @WebParam(name="delimiter") @XmlElement(required=true) String delimiter)
-
 
89
  	throws XServicesFault;
83
  
90
  
84
}
91
}