Examples of ClassC


Examples of org.jboss.test.ws.jaxws.jbws1702.types.ClassC

  /**
   * In .NET Client (C#) only the content information of ClassB is being submitted.  (--> propC is unknown)
   */ 
  public ResponseWrapperB getClassCAsClassB() {
    ClassC classC= new ClassC();
    classC.setPropA("propA");
    classC.setPropB("propB");
    classC.setPropC("propC");

    ResponseWrapperB resp = new ResponseWrapperB();
    resp.setData(classC);
    return resp;
  }
View Full Code Here

Examples of org.jboss.test.ws.jaxws.jbws1702.types.ClassC

  /**
   * Method that make ClassC available for all clients using this web service.
   */ 
  public ResponseWrapperC getClassC() {
    ClassC data = (ClassC) getClassCAsClassB().getData();
    ResponseWrapperC resp = new ResponseWrapperC();
    resp.setData(data);
    return resp;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.