package org.openclinica.ws.study.v1; import javax.jws.WebMethod; import javax.jws.WebParam; import javax.jws.WebResult; import javax.jws.WebService; import javax.jws.soap.SOAPBinding; import javax.xml.bind.annotation.XmlSeeAlso; /** * This class was generated by the JAX-WS RI. * JAX-WS RI 2.1.6 in JDK 6 * Generated source version: 2.1 * */ @WebService(name = "ws", targetNamespace = "http://openclinica.org/ws/study/v1") @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) @XmlSeeAlso({ org.openclinica.ws.study.v1.ObjectFactory.class, org.openclinica.ws.beans.ObjectFactory.class }) public interface Ws { /** * * @param listAllRequest * @return * returns org.openclinica.ws.study.v1.ListAllResponse */ @WebMethod @WebResult(name = "listAllResponse", targetNamespace = "http://openclinica.org/ws/study/v1", partName = "listAllResponse") public ListAllResponse listAll( @WebParam(name = "listAllRequest", targetNamespace = "http://openclinica.org/ws/study/v1", partName = "listAllRequest") Object listAllRequest); /** * * @param getMetadataRequest * @return * returns org.openclinica.ws.study.v1.GetMetadataResponse */ @WebMethod @WebResult(name = "getMetadataResponse", targetNamespace = "http://openclinica.org/ws/study/v1", partName = "getMetadataResponse") public GetMetadataResponse getMetadata( @WebParam(name = "getMetadataRequest", targetNamespace = "http://openclinica.org/ws/study/v1", partName = "getMetadataRequest") GetMetadataRequest getMetadataRequest); }