Package org.apache.soap.rpc

Examples of org.apache.soap.rpc.Parameter


    * @param encoding
    * type:java.lang.String -
    * desc: the parameter encoding
    */
    public void addParameter(String paramName, Class  paramClass, Object paramValue, String encoding) {
        parameters.addElement(new Parameter(paramName, paramClass, paramValue, encoding));
       
    }
View Full Code Here


    * @param encoding
    * type:java.lang.String -
    * desc: the parameter encoding
    */
    public void addParameter(String paramName, Class  paramClass, Object paramValue, String encoding) {
        parameters.addElement(new Parameter(paramName, paramClass, paramValue, encoding));
       
    }
View Full Code Here

  }
 
  // if the detail entry is a Parameter, try to find a serializer, if there is an error, write nothing
  else if (detailEntry instanceof Parameter) {
    try {
      Parameter detailEntryParameter = (Parameter)detailEntry;
      xjmr.querySerializer(Parameter.class, inScopeEncStyle).marshall(inScopeEncStyle, Parameter.class, detailEntryParameter, Constants.ELEM_FAULT_DETAIL_ENTRY, sink, nsStack, xjmr, ctx);
      sink.write(StringUtils.lineSeparator);
    }
    catch (IllegalArgumentException iae) {}
  }
View Full Code Here

TOP

Related Classes of org.apache.soap.rpc.Parameter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.