javax.xml.ws.Action.<init>()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(11.5k)|赞(0)|评价(0)|浏览(157)

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

Action.<init>介绍

暂无

代码示例

代码示例来源:origin: apache/cxf

@Oneway
  @Action(input = EventingConstants.ACTION_NOTIFY_EVENT_WRAPPED_DELIVERY)
  @WebMethod(operationName = EventingConstants.OPERATION_NOTIFY_EVENT)
  void notifyEvent(
    @WebParam(partName = EventingConstants.PARAMETER, name = EventingConstants.NOTIFY,
         targetNamespace = EventingConstants.EVENTING_2011_03_NAMESPACE)
    EventType parameter
  );
}

代码示例来源:origin: apache/cxf

@WebResult(name = "RequestSecurityTokenResponse",
      targetNamespace = "http://docs.oasis-open.org/ws-sx/ws-trust/200512",
      partName = "response")
@Action(input = "http://docs.oasis-open.org/ws-sx/ws-trust/200512/RST/KET",
    output = "http://docs.oasis-open.org/ws-sx/ws-trust/200512/RSTR/KETFinal")
@WebMethod(operationName = "KeyExchangeToken")
RequestSecurityTokenResponseType keyExchangeToken(
  @WebParam(partName = "request",
       name = "RequestSecurityToken",
       targetNamespace = "http://docs.oasis-open.org/ws-sx/ws-trust/200512")
  RequestSecurityTokenType request
);

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

@Oneway
  @Action(input = "urn:hl7-org:v3:PRPA_IN201306UV02:CrossGatewayPatientDiscovery")
  @WebMethod(operationName = "InitiatingGateway_Async_PRPA_IN201306UV02")
  void receiveAsyncResponse(
      @WebParam(partName = "Body", targetNamespace = "urn:ihe:iti:xcpd:2009")
      String response
  );
}

代码示例来源:origin: org.apache.cxf/cxf-rt-ws-security

@WebResult(name = "RequestSecurityTokenResponse",
      targetNamespace = "http://docs.oasis-open.org/ws-sx/ws-trust/200512",
      partName = "response")
@Action(input = "http://docs.oasis-open.org/ws-sx/ws-trust/200512/RST/KET",
    output = "http://docs.oasis-open.org/ws-sx/ws-trust/200512/RSTR/KETFinal")
@WebMethod(operationName = "KeyExchangeToken")
RequestSecurityTokenResponseType keyExchangeToken(
  @WebParam(partName = "request",
       name = "RequestSecurityToken",
       targetNamespace = "http://docs.oasis-open.org/ws-sx/ws-trust/200512")
  RequestSecurityTokenType request
);

代码示例来源:origin: apache/cxf

@WebMethod(operationName = "ByeOp", action = "http://docs.oasis-open.org/ws-dd/ns/discovery/2009/01/ByeOp")
  @Action(input = "http://docs.oasis-open.org/ws-dd/ns/discovery/2009/01/Bye")
  @Oneway
  @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2019-02-10T17:03:25.702Z")
  public void byeOp(
    @WebParam(partName = "parameters", name = "Bye", targetNamespace = "http://docs.oasis-open.org/ws-dd/ns/discovery/2009/01")
    ByeType parameters
  );
}

代码示例来源:origin: org.apache.cxf/cxf-rt-ws-security

@WebResult(name = "RequestSecurityTokenResponse",
      targetNamespace = "http://docs.oasis-open.org/ws-sx/ws-trust/200512",
      partName = "response")
@Action(input = "http://docs.oasis-open.org/ws-sx/ws-trust/200512/RST/Cancel",
    output = "http://docs.oasis-open.org/ws-sx/ws-trust/200512/RSTR/CancelFinal")
@WebMethod(operationName = "Cancel")
RequestSecurityTokenResponseType cancel(
  @WebParam(partName = "request", name = "RequestSecurityToken",
       targetNamespace = "http://docs.oasis-open.org/ws-sx/ws-trust/200512")
  RequestSecurityTokenType request
);

代码示例来源:origin: apache/cxf

@WebMethod(operationName = "HelloOp", action = "http://docs.oasis-open.org/ws-dd/ns/discovery/2009/01/HelloOp")
@Action(input = "http://docs.oasis-open.org/ws-dd/ns/discovery/2009/01/Hello")
@Oneway
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2019-02-10T17:03:25.702Z")
public void helloOp(
  @WebParam(partName = "parameters", name = "Hello", targetNamespace = "http://docs.oasis-open.org/ws-dd/ns/discovery/2009/01")
  HelloType parameters
);

代码示例来源:origin: apache/cxf

@WebResult(name = "Metadata",
  targetNamespace = "http://schemas.xmlsoap.org/ws/2004/09/mex",
  partName = "body")
@Action(input = "http://schemas.xmlsoap.org/ws/2004/09/mex/GetMetadata/Request",
  output = "http://schemas.xmlsoap.org/ws/2004/09/mex/GetMetadata/Response")
@WebMethod(operationName = "GetMetadata2004")
org.apache.cxf.ws.mex.model._2004_09.Metadata getMetadata(
  @WebParam(partName = "body", name = "GetMetadata",
    targetNamespace = "http://schemas.xmlsoap.org/ws/2004/09/mex")
  org.apache.cxf.ws.mex.model._2004_09.GetMetadata body
);

代码示例来源:origin: org.apache.cxf/cxf-rt-ws-eventing

@Oneway
  @Action(input = EventingConstants.ACTION_NOTIFY_EVENT_WRAPPED_DELIVERY)
  @WebMethod(operationName = EventingConstants.OPERATION_NOTIFY_EVENT)
  void notifyEvent(
    @WebParam(partName = EventingConstants.PARAMETER, name = EventingConstants.NOTIFY,
         targetNamespace = EventingConstants.EVENTING_2011_03_NAMESPACE)
    EventType parameter
  );
}

代码示例来源:origin: apache/cxf

@WebResult(name = "RequestSecurityTokenResponseCollection",
      targetNamespace = "http://docs.oasis-open.org/ws-sx/ws-trust/200512",
      partName = "responseCollection")
@Action(input = "http://docs.oasis-open.org/ws-sx/ws-trust/200512/RST/Issue",
    output = "http://docs.oasis-open.org/ws-sx/ws-trust/200512/RSTRC/IssueFinal")
@WebMethod(operationName = "Issue")
RequestSecurityTokenResponseCollectionType issue(
  @WebParam(partName = "request",
       name = "RequestSecurityToken",
       targetNamespace = "http://docs.oasis-open.org/ws-sx/ws-trust/200512")
  RequestSecurityTokenType request
);

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

@Oneway
  @Action(input = "urn:ihe:iti:2009:PatientLocationQueryResponse")
  @WebMethod(operationName = "InitiatingGateway_Async_PatientLocationQueryResponse")
  void receiveAsyncResponse(
      @WebParam(partName = "Body", targetNamespace = "urn:ihe:iti:xcpd:2009")
      String response
  );
}

代码示例来源:origin: apache/cxf

@WebResult(name = "RequestSecurityTokenResponse",
      targetNamespace = "http://docs.oasis-open.org/ws-sx/ws-trust/200512",
      partName = "response")
@Action(input = "http://docs.oasis-open.org/ws-sx/ws-trust/200512/RST/Validate",
    output = "http://docs.oasis-open.org/ws-sx/ws-trust/200512/RSTR/ValidateFinal")
@WebMethod(operationName = "Validate")
RequestSecurityTokenResponseType validate(
  @WebParam(partName = "request", name = "RequestSecurityToken",
       targetNamespace = "http://docs.oasis-open.org/ws-sx/ws-trust/200512")
  RequestSecurityTokenType request
);

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

@Oneway
@Action(input = "urn:deleteRole")
@RequestWrapper(localName = "deleteRole", targetNamespace = "http://service.ws.um.carbon.wso2.org", className = "com.sitewhere.wso2.identity.ws.DeleteRole")
@WebMethod(action = "urn:deleteRole")
public void deleteRole(
  @WebParam(name = "roleName", targetNamespace = "http://service.ws.um.carbon.wso2.org")
  java.lang.String roleName
);

代码示例来源:origin: apache/cxf

@WebMethod(operationName = "Ping", action = "http://xmlsoap.org/Ping")
  @Action(input = "http://xmlsoap.org/Ping", output = "http://xmlsoap.org/Ping")
  @WebResult(name = "PingResponse", targetNamespace = "http://WSSec/wssc", partName = "parameters")
  @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2019-02-10T17:14:31.837Z")
  public PingResponse ping(
    @WebParam(partName = "parameters", name = "PingRequest", targetNamespace = "http://WSSec/wssc")
    PingRequest parameters
  );
}

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

@Oneway
@Action(input = "urn:deleteUser")
@RequestWrapper(localName = "deleteUser", targetNamespace = "http://service.ws.um.carbon.wso2.org", className = "com.sitewhere.wso2.identity.ws.DeleteUser")
@WebMethod(action = "urn:deleteUser")
public void deleteUser(
  @WebParam(name = "userName", targetNamespace = "http://service.ws.um.carbon.wso2.org")
  java.lang.String userName
);

代码示例来源:origin: apache/cxf

@WebMethod(operationName = "ResolveOp", action = "http://docs.oasis-open.org/ws-dd/ns/discovery/2009/01/ResolveOp")
@Action(input = "http://docs.oasis-open.org/ws-dd/ns/discovery/2009/01/Resolve", output = "http://docs.oasis-open.org/ws-dd/ns/discovery/2009/01/ResolveMatches")
@WebResult(name = "ResolveMatches", targetNamespace = "http://docs.oasis-open.org/ws-dd/ns/discovery/2009/01", partName = "parameters")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2019-02-10T17:03:25.702Z")
public ResolveMatchesType resolveOp(
  @WebParam(partName = "parameters", name = "Resolve", targetNamespace = "http://docs.oasis-open.org/ws-dd/ns/discovery/2009/01")
  ResolveType parameters
);

代码示例来源:origin: org.apache.cxf.services.ws-discovery/cxf-services-ws-discovery-api

@WebMethod(operationName = "ByeOp", action = "http://docs.oasis-open.org/ws-dd/ns/discovery/2009/01/ByeOp")
  @Action(input = "http://docs.oasis-open.org/ws-dd/ns/discovery/2009/01/Bye")
  @Oneway
  @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2019-01-24T13:53:59.209-05:00")
  public void byeOp(
    @WebParam(partName = "parameters", name = "Bye", targetNamespace = "http://docs.oasis-open.org/ws-dd/ns/discovery/2009/01")
    ByeType parameters
  );
}

代码示例来源:origin: apache/cxf

@WebMethod(operationName = "ProbeOp", action = "http://docs.oasis-open.org/ws-dd/ns/discovery/2009/01/ProbeOp")
@Action(input = "http://docs.oasis-open.org/ws-dd/ns/discovery/2009/01/Probe", output = "http://docs.oasis-open.org/ws-dd/ns/discovery/2009/01/ProbeMatches")
@WebResult(name = "ProbeMatches", targetNamespace = "http://docs.oasis-open.org/ws-dd/ns/discovery/2009/01", partName = "parameters")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2019-02-10T17:03:25.702Z")
public ProbeMatchesType probeOp(
  @WebParam(partName = "parameters", name = "Probe", targetNamespace = "http://docs.oasis-open.org/ws-dd/ns/discovery/2009/01")
  ProbeType parameters
);

代码示例来源:origin: com.sitewhere/sitewhere-wso2

@Oneway
@Action(input = "urn:deleteUser")
@RequestWrapper(localName = "deleteUser", targetNamespace = "http://service.ws.um.carbon.wso2.org", className = "com.sitewhere.wso2.identity.ws.DeleteUser")
@WebMethod(action = "urn:deleteUser")
public void deleteUser(
  @WebParam(name = "userName", targetNamespace = "http://service.ws.um.carbon.wso2.org")
  java.lang.String userName
);

代码示例来源:origin: apache/cxf

@WebMethod(action = "http://WSSec/wssec10/echo")
  @Action(input = "http://WSSec/wssec10/echo", output = "http://WSSec/wssec10/echo")
  @RequestWrapper(localName = "echo", targetNamespace = "http://WSSec/wssec10", className = "wssec.wssec10.Echo")
  @ResponseWrapper(localName = "echoResponse", targetNamespace = "http://WSSec/wssec10", className = "wssec.wssec10.EchoResponse")
  @WebResult(name = "echoResult", targetNamespace = "")
  @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2019-02-10T17:14:30.161Z")
  public java.lang.String echo(
    @WebParam(name = "request", targetNamespace = "")
    java.lang.String request
  );
}

相关文章