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

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

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

WebService.<init>介绍

暂无

代码示例

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

  1. /**
  2. * @author Juergen Hoeller
  3. */
  4. @WebService
  5. @SOAPBinding(style = SOAPBinding.Style.RPC)
  6. public interface OrderService {
  7. String getOrder(int id) throws OrderNotFoundException;
  8. }

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

  1. /**
  2. * This class was generated by the JAX-WS RI.
  3. * JAX-WS RI 2.1.1 in JDK 6
  4. * Generated source version: 2.1
  5. *
  6. */
  7. @WebService(name = "HandlingReportService", targetNamespace = "http://ws.handling.interfaces.dddsample.citerus.se/")
  8. @XmlSeeAlso({
  9. ObjectFactory.class
  10. })
  11. public interface HandlingReportService {
  12. /**
  13. *
  14. * @param arg0
  15. * @throws HandlingReportErrors_Exception
  16. */
  17. @WebMethod
  18. @RequestWrapper(localName = "submitReport", targetNamespace = "http://ws.handling.interfaces.dddsample.citerus.se/", className = "com.aggregator.SubmitReport")
  19. @ResponseWrapper(localName = "submitReportResponse", targetNamespace = "http://ws.handling.interfaces.dddsample.citerus.se/", className = "com.aggregator.SubmitReportResponse")
  20. public void submitReport(
  21. @WebParam(name = "arg0", targetNamespace = "")
  22. HandlingReport arg0)
  23. throws HandlingReportErrors_Exception
  24. ;
  25. }

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

  1. @WebService(targetNamespace = "urn:ihe:iti:hpd:2010", name = "ProviderInformationDirectory_PortType", portName = "ProviderInformationDirectory_Port_Soap12")
  2. @XmlSeeAlso({ObjectFactory.class})
  3. @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
  4. public interface Iti58PortType {
  5. @WebMethod(operationName = "ProviderInformationQueryRequest")
  6. @Action(input = "urn:ihe:iti:2010:ProviderInformationQuery", output = "urn:ihe:iti:2010:ProviderInformationQueryResponse")
  7. @WebResult(name = "batchResponse", targetNamespace = "urn:oasis:names:tc:DSML:2:0:core", partName = "body")
  8. BatchResponse providerInformationQueryRequest(
  9. @WebParam(partName = "body", name = "batchRequest", targetNamespace = "urn:oasis:names:tc:DSML:2:0:core")
  10. BatchRequest body
  11. );
  12. }

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

  1. @WebService(targetNamespace = "urn:ihe:iti:hpd:2010", name = "ProviderInformationDirectory_PortType", portName = "ProviderInformationDirectory_Port_Soap12")
  2. @XmlSeeAlso({ObjectFactory.class})
  3. @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
  4. public interface Iti59PortType {
  5. @WebMethod(operationName = "ProviderInformationFeedRequest")
  6. @Action(input = "urn:ihe:iti:2010:ProviderInformationFeed", output = "urn:ihe:iti:2010:ProviderInformationFeedResponse")
  7. @WebResult(name = "batchResponse", targetNamespace = "urn:oasis:names:tc:DSML:2:0:core", partName = "body")
  8. BatchResponse providerInformationFeedRequest(
  9. @WebParam(partName = "body", name = "batchRequest", targetNamespace = "urn:oasis:names:tc:DSML:2:0:core")
  10. BatchRequest body
  11. );
  12. }

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

  1. @WebService(name = "NewServicesInterface", targetNamespace="org.bimserver")
  2. @SOAPBinding(style = Style.DOCUMENT, use = Use.LITERAL, parameterStyle = ParameterStyle.WRAPPED)
  3. public interface NewServicesInterface extends PublicInterface {
  4. /**
  5. * @return
  6. * @throws ServerException
  7. * @throws UserException
  8. */
  9. @WebMethod(action="listAllServiceDescriptors")
  10. List<SNewServiceDescriptor> listAllServiceDescriptors() throws ServerException, UserException;
  11. @WebMethod(action="listAvailableOutputFormats")
  12. List<SFormatSerializerMap> listAvailableOutputFormats(@WebParam(name = "poid", partName = "listAvailableOutputFormats.poid") Long poid) throws ServerException, UserException;
  13. }

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

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

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

  1. /**
  2. * This class was generated by Apache CXF 3.2.7
  3. * 2019-02-27T15:55:51.375Z
  4. * Generated source version: 3.2.7
  5. *
  6. */
  7. @WebService(targetNamespace = "http://inventory.camelinaction", name = "InventoryEndpoint")
  8. @XmlSeeAlso({ObjectFactory.class})
  9. @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
  10. public interface InventoryEndpoint {
  11. @WebMethod(operationName = "Inventory", action = "http://http://inventory.camelinaction/Inventory")
  12. @WebResult(name = "updateInventoryOutput", targetNamespace = "http://inventory.camelinaction", partName = "out")
  13. public UpdateInventoryOutput inventory(
  14. @WebParam(partName = "in", name = "updateInventoryInput", targetNamespace = "http://inventory.camelinaction")
  15. UpdateInventoryInput in
  16. );
  17. }

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

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

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

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

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

  1. /**
  2. * This class was generated by Apache CXF 3.2.7
  3. * 2019-02-27T15:55:09.637Z
  4. * Generated source version: 3.2.7
  5. *
  6. */
  7. @WebService(targetNamespace = "http://inventory.camelinaction", name = "InventoryEndpoint")
  8. @XmlSeeAlso({ObjectFactory.class})
  9. @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
  10. public interface InventoryEndpoint {
  11. @WebMethod(operationName = "Inventory", action = "http://http://inventory.camelinaction/Inventory")
  12. @WebResult(name = "updateInventoryOutput", targetNamespace = "http://inventory.camelinaction", partName = "out")
  13. public UpdateInventoryOutput inventory(
  14. @WebParam(partName = "in", name = "updateInventoryInput", targetNamespace = "http://inventory.camelinaction")
  15. UpdateInventoryInput in
  16. );
  17. }

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

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

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

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

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

  1. /**
  2. * This class was generated by Apache CXF 3.2.7
  3. * 2019-02-27T16:01:10.925Z
  4. * Generated source version: 3.2.7
  5. *
  6. */
  7. @WebService(targetNamespace = "http://inventory.camelinaction", name = "InventoryEndpoint")
  8. @XmlSeeAlso({ObjectFactory.class})
  9. @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
  10. public interface InventoryEndpoint {
  11. @WebMethod(operationName = "Inventory", action = "http://http://inventory.camelinaction/Inventory")
  12. @WebResult(name = "updateInventoryOutput", targetNamespace = "http://inventory.camelinaction", partName = "out")
  13. public UpdateInventoryOutput inventory(
  14. @WebParam(partName = "in", name = "updateInventoryInput", targetNamespace = "http://inventory.camelinaction")
  15. UpdateInventoryInput in
  16. );
  17. }

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

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

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

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

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

  1. /**
  2. * This class was generated by Apache CXF 3.2.7
  3. * 2019-02-27T15:54:00.609Z
  4. * Generated source version: 3.2.7
  5. *
  6. */
  7. @WebService(targetNamespace = "http://order.camelinaction", name = "OrderEndpoint")
  8. @XmlSeeAlso({ObjectFactory.class})
  9. @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
  10. public interface OrderEndpoint {
  11. @WebMethod(operationName = "Order", action = "http://order.camelinaction/Order")
  12. @WebResult(name = "outputOrder", targetNamespace = "http://order.camelinaction", partName = "out")
  13. public OutputOrder order(
  14. @WebParam(partName = "in", name = "inputOrder", targetNamespace = "http://order.camelinaction")
  15. InputOrder in
  16. );
  17. }

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

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

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

  1. @WebService
  2. @XmlSeeAlso({ObjectFactory.class})
  3. public interface Person {
  4. @RequestWrapper(localName = "GetPerson", className = "GetPerson")
  5. @ResponseWrapper(localName = "GetPersonResponse", className = "GetPersonResponse")
  6. @WebMethod(operationName = "GetPerson")
  7. public void getPerson(
  8. @WebParam(mode = WebParam.Mode.INOUT, name = "personId")
  9. javax.xml.ws.Holder<String> personId,
  10. @WebParam(mode = WebParam.Mode.OUT, name = "ssn")
  11. javax.xml.ws.Holder<String> ssn,
  12. @WebParam(mode = WebParam.Mode.OUT, name = "name")
  13. javax.xml.ws.Holder<String> name
  14. ) throws UnknownPersonFault;
  15. }

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

  1. /**
  2. * This class was generated by Apache CXF 3.2.7
  3. * 2019-02-27T15:56:38.498Z
  4. * Generated source version: 3.2.7
  5. *
  6. */
  7. @WebService(targetNamespace = "http://inventory.camelinaction", name = "InventoryEndpoint")
  8. @XmlSeeAlso({ObjectFactory.class})
  9. @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
  10. public interface InventoryEndpoint {
  11. @WebMethod(operationName = "Inventory", action = "http://http://inventory.camelinaction/Inventory")
  12. @WebResult(name = "updateInventoryOutput", targetNamespace = "http://inventory.camelinaction", partName = "out")
  13. public UpdateInventoryOutput inventory(
  14. @WebParam(partName = "in", name = "updateInventoryInput", targetNamespace = "http://inventory.camelinaction")
  15. UpdateInventoryInput in
  16. );
  17. }

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

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

相关文章