javax.jws.WebService.<init>()方法的使用及代码示例

x33g5p2x  于2022-02-02 转载在 其他  
字(10.9k)|赞(0)|评价(0)|浏览(145)

本文整理了Java中javax.jws.WebService.<init>()方法的一些代码示例,展示了WebService.<init>()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WebService.<init>()方法的具体详情如下:
包路径:javax.jws.WebService
类名称:WebService
方法名:<init>

WebService.<init>介绍

暂无

代码示例

代码示例来源:origin: spring-projects/spring-framework

/**
 * @author Juergen Hoeller
 */
@WebService
@SOAPBinding(style = SOAPBinding.Style.RPC)
public interface OrderService {

  String getOrder(int id) throws OrderNotFoundException;

}

代码示例来源:origin: citerus/dddsample-core

/**
 * This class was generated by the JAX-WS RI.
 * JAX-WS RI 2.1.1 in JDK 6
 * Generated source version: 2.1
 * 
 */
@WebService(name = "HandlingReportService", targetNamespace = "http://ws.handling.interfaces.dddsample.citerus.se/")
@XmlSeeAlso({
  ObjectFactory.class
})
public interface HandlingReportService {

  /**
   * 
   * @param arg0
   * @throws HandlingReportErrors_Exception
   */
  @WebMethod
  @RequestWrapper(localName = "submitReport", targetNamespace = "http://ws.handling.interfaces.dddsample.citerus.se/", className = "com.aggregator.SubmitReport")
  @ResponseWrapper(localName = "submitReportResponse", targetNamespace = "http://ws.handling.interfaces.dddsample.citerus.se/", className = "com.aggregator.SubmitReportResponse")
  public void submitReport(
    @WebParam(name = "arg0", targetNamespace = "")
    HandlingReport arg0)
    throws HandlingReportErrors_Exception
  ;

}

代码示例来源:origin: org.openehealth.ipf.commons/ipf-commons-ihe-hpd

@WebService(targetNamespace = "urn:ihe:iti:hpd:2010", name = "ProviderInformationDirectory_PortType", portName = "ProviderInformationDirectory_Port_Soap12")
@XmlSeeAlso({ObjectFactory.class})
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
public interface Iti58PortType {

  @WebMethod(operationName = "ProviderInformationQueryRequest")
  @Action(input = "urn:ihe:iti:2010:ProviderInformationQuery", output = "urn:ihe:iti:2010:ProviderInformationQueryResponse")
  @WebResult(name = "batchResponse", targetNamespace = "urn:oasis:names:tc:DSML:2:0:core", partName = "body")
  BatchResponse providerInformationQueryRequest(
      @WebParam(partName = "body", name = "batchRequest", targetNamespace = "urn:oasis:names:tc:DSML:2:0:core")
          BatchRequest body
  );
}

代码示例来源:origin: org.openehealth.ipf.commons/ipf-commons-ihe-hpd

@WebService(targetNamespace = "urn:ihe:iti:hpd:2010", name = "ProviderInformationDirectory_PortType", portName = "ProviderInformationDirectory_Port_Soap12")
@XmlSeeAlso({ObjectFactory.class})
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
public interface Iti59PortType {

  @WebMethod(operationName = "ProviderInformationFeedRequest")
  @Action(input = "urn:ihe:iti:2010:ProviderInformationFeed", output = "urn:ihe:iti:2010:ProviderInformationFeedResponse")
  @WebResult(name = "batchResponse", targetNamespace = "urn:oasis:names:tc:DSML:2:0:core", partName = "body")
  BatchResponse providerInformationFeedRequest(
      @WebParam(partName = "body", name = "batchRequest", targetNamespace = "urn:oasis:names:tc:DSML:2:0:core")
          BatchRequest body
  );
}

代码示例来源:origin: opensourceBIM/BIMserver

@WebService(name = "NewServicesInterface", targetNamespace="org.bimserver")
@SOAPBinding(style = Style.DOCUMENT, use = Use.LITERAL, parameterStyle = ParameterStyle.WRAPPED)
public interface NewServicesInterface extends PublicInterface {
  /**
   * @return
   * @throws ServerException
   * @throws UserException
   */
  @WebMethod(action="listAllServiceDescriptors")
  List<SNewServiceDescriptor> listAllServiceDescriptors() throws ServerException, UserException;

  @WebMethod(action="listAvailableOutputFormats")
  List<SFormatSerializerMap> listAvailableOutputFormats(@WebParam(name = "poid", partName = "listAvailableOutputFormats.poid") Long poid) throws ServerException, UserException;
}

代码示例来源:origin: Libresonic/libresonic

@WebService(targetNamespace = "http://www.sonos.com/Services/1.1", name = "SonosSoap")
@XmlSeeAlso({com.sonos.services._1.ObjectFactory.class})
public interface SonosSoap {

代码示例来源:origin: camelinaction/camelinaction2

/**
 * This class was generated by Apache CXF 3.2.7
 * 2019-02-27T15:55:51.375Z
 * Generated source version: 3.2.7
 *
 */
@WebService(targetNamespace = "http://inventory.camelinaction", name = "InventoryEndpoint")
@XmlSeeAlso({ObjectFactory.class})
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
public interface InventoryEndpoint {

  @WebMethod(operationName = "Inventory", action = "http://http://inventory.camelinaction/Inventory")
  @WebResult(name = "updateInventoryOutput", targetNamespace = "http://inventory.camelinaction", partName = "out")
  public UpdateInventoryOutput inventory(
    @WebParam(partName = "in", name = "updateInventoryInput", targetNamespace = "http://inventory.camelinaction")
    UpdateInventoryInput in
  );
}

代码示例来源:origin: opensourceBIM/BIMserver

@WebService(name = "MetaInterface", targetNamespace="org.bimserver")
@SOAPBinding(style = Style.DOCUMENT, use = Use.LITERAL, parameterStyle = ParameterStyle.WRAPPED)
public interface MetaInterface extends PublicInterface {

代码示例来源:origin: airsonic/airsonic

@WebService(targetNamespace = "http://www.sonos.com/Services/1.1", name = "SonosSoap")
@XmlSeeAlso({com.sonos.services._1.ObjectFactory.class})
public interface SonosSoap {

代码示例来源:origin: camelinaction/camelinaction2

/**
 * This class was generated by Apache CXF 3.2.7
 * 2019-02-27T15:55:09.637Z
 * Generated source version: 3.2.7
 *
 */
@WebService(targetNamespace = "http://inventory.camelinaction", name = "InventoryEndpoint")
@XmlSeeAlso({ObjectFactory.class})
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
public interface InventoryEndpoint {

  @WebMethod(operationName = "Inventory", action = "http://http://inventory.camelinaction/Inventory")
  @WebResult(name = "updateInventoryOutput", targetNamespace = "http://inventory.camelinaction", partName = "out")
  public UpdateInventoryOutput inventory(
    @WebParam(partName = "in", name = "updateInventoryInput", targetNamespace = "http://inventory.camelinaction")
    UpdateInventoryInput in
  );
}

代码示例来源:origin: opensourceBIM/BIMserver

@WebService(name = "OAuthInterface", targetNamespace="org.bimserver")
@SOAPBinding(style = Style.DOCUMENT, use = Use.LITERAL, parameterStyle = ParameterStyle.WRAPPED)
public interface OAuthInterface extends PublicInterface {

代码示例来源:origin: org.apache.chemistry.opencmis/chemistry-opencmis-server-bindings

@WebService(name = "ObjectServicePort", targetNamespace = "http://docs.oasis-open.org/ns/cmis/ws/200908/")
@XmlSeeAlso({ ObjectFactory.class })
public interface ObjectServicePort10 extends ObjectServicePort {
}

代码示例来源:origin: camelinaction/camelinaction2

/**
 * This class was generated by Apache CXF 3.2.7
 * 2019-02-27T16:01:10.925Z
 * Generated source version: 3.2.7
 *
 */
@WebService(targetNamespace = "http://inventory.camelinaction", name = "InventoryEndpoint")
@XmlSeeAlso({ObjectFactory.class})
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
public interface InventoryEndpoint {

  @WebMethod(operationName = "Inventory", action = "http://http://inventory.camelinaction/Inventory")
  @WebResult(name = "updateInventoryOutput", targetNamespace = "http://inventory.camelinaction", partName = "out")
  public UpdateInventoryOutput inventory(
    @WebParam(partName = "in", name = "updateInventoryInput", targetNamespace = "http://inventory.camelinaction")
    UpdateInventoryInput in
  );
}

代码示例来源:origin: opensourceBIM/BIMserver

@WebService(name = "AuthInterface", targetNamespace="org.bimserver")
@SOAPBinding(style = Style.DOCUMENT, use = Use.LITERAL, parameterStyle = ParameterStyle.WRAPPED)
public interface AuthInterface extends PublicInterface {

代码示例来源:origin: org.apache.chemistry.opencmis/chemistry-opencmis-server-bindings

@WebService(name = "RepositoryServicePort", targetNamespace = "http://docs.oasis-open.org/ns/cmis/ws/200908/")
@XmlSeeAlso({ ObjectFactory.class })
public interface RepositoryServicePort10 extends RepositoryServicePort {
}

代码示例来源:origin: camelinaction/camelinaction2

/**
 * This class was generated by Apache CXF 3.2.7
 * 2019-02-27T15:54:00.609Z
 * Generated source version: 3.2.7
 *
 */
@WebService(targetNamespace = "http://order.camelinaction", name = "OrderEndpoint")
@XmlSeeAlso({ObjectFactory.class})
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
public interface OrderEndpoint {

  @WebMethod(operationName = "Order", action = "http://order.camelinaction/Order")
  @WebResult(name = "outputOrder", targetNamespace = "http://order.camelinaction", partName = "out")
  public OutputOrder order(
    @WebParam(partName = "in", name = "inputOrder", targetNamespace = "http://order.camelinaction")
    InputOrder in
  );
}

代码示例来源:origin: opensourceBIM/BIMserver

@WebService(name = "RemoteServiceInterface", targetNamespace="org.bimserver")
@SOAPBinding(style = Style.DOCUMENT, use = Use.LITERAL, parameterStyle = ParameterStyle.WRAPPED)
public interface RemoteServiceInterface extends PublicInterface {

代码示例来源:origin: org.keycloak.example.demo/cxf-jaxws-example

@WebService
@XmlSeeAlso({ObjectFactory.class})
public interface Person {

  @RequestWrapper(localName = "GetPerson", className = "GetPerson")
  @ResponseWrapper(localName = "GetPersonResponse", className = "GetPersonResponse")
  @WebMethod(operationName = "GetPerson")
  public void getPerson(
      @WebParam(mode = WebParam.Mode.INOUT, name = "personId")
      javax.xml.ws.Holder<String> personId,
      @WebParam(mode = WebParam.Mode.OUT, name = "ssn")
      javax.xml.ws.Holder<String> ssn,
      @WebParam(mode = WebParam.Mode.OUT, name = "name")
      javax.xml.ws.Holder<String> name
  ) throws UnknownPersonFault;
}

代码示例来源:origin: camelinaction/camelinaction2

/**
 * This class was generated by Apache CXF 3.2.7
 * 2019-02-27T15:56:38.498Z
 * Generated source version: 3.2.7
 *
 */
@WebService(targetNamespace = "http://inventory.camelinaction", name = "InventoryEndpoint")
@XmlSeeAlso({ObjectFactory.class})
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
public interface InventoryEndpoint {

  @WebMethod(operationName = "Inventory", action = "http://http://inventory.camelinaction/Inventory")
  @WebResult(name = "updateInventoryOutput", targetNamespace = "http://inventory.camelinaction", partName = "out")
  public UpdateInventoryOutput inventory(
    @WebParam(partName = "in", name = "updateInventoryInput", targetNamespace = "http://inventory.camelinaction")
    UpdateInventoryInput in
  );
}

代码示例来源:origin: opensourceBIM/BIMserver

@WebService(name = "NotificationInterface", targetNamespace="org.bimserver")
@SOAPBinding(style = Style.DOCUMENT, use = Use.LITERAL, parameterStyle = ParameterStyle.WRAPPED)
public interface NotificationInterface extends PublicInterface {

相关文章