View Javadoc
1   /*
2    * Copyright 2009 the original author or authors.
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    *     http://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.openehealth.ipf.commons.ihe.hl7v3.iti47;
17  
18  import org.openehealth.ipf.commons.ihe.hl7v3.Hl7v3ContinuationsPortType;
19  
20  import javax.jws.WebMethod;
21  import javax.jws.WebParam;
22  import javax.jws.WebResult;
23  import javax.jws.WebService;
24  import javax.jws.soap.SOAPBinding;
25  import javax.xml.ws.Action;
26  
27  @WebService(targetNamespace = "urn:ihe:iti:pdqv3:2007", name = "PDSupplier_PortType", portName = "PDSupplier_Port_Soap12")
28  @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
29  public interface Iti47PortType extends Hl7v3ContinuationsPortType {
30  
31      @WebResult(name = "PRPA_IN201306UV02", targetNamespace = "urn:hl7-org:v3", partName = "Body")
32      @Action(input = "urn:hl7-org:v3:PRPA_IN201305UV02", output = "urn:hl7-org:v3:PRPA_IN201306UV02")
33      @WebMethod(operationName = "PDSupplier_PRPA_IN201305UV02",
34                 action = "urn:hl7-org:v3:PRPA_IN201305UV02")
35      String operation(
36          @WebParam(partName = "Body", name = "PRPA_IN201305UV02", targetNamespace = "urn:hl7-org:v3")
37          String request
38      );
39  
40      @WebResult(name = "PRPA_IN201306UV02", targetNamespace = "urn:hl7-org:v3", partName = "Body")
41      @Action(input = "urn:hl7-org:v3:QUQI_IN000003UV01_Continue", output = "urn:hl7-org:v3:PRPA_IN201306UV02")
42      @WebMethod(operationName = "PDSupplier_QUQI_IN000003UV01_Continue",
43                 action = "urn:hl7-org:v3:PDSupplier_QUQI_IN000003UV01_Continue")
44      String continuation(
45          @WebParam(partName = "Body", name = "QUQI_IN000003UV01", targetNamespace = "urn:hl7-org:v3")
46          String request
47      );
48  
49      @WebResult(name = "MCCI_IN000002UV01", targetNamespace = "urn:hl7-org:v3", partName = "Body")
50      @Action(input = "urn:hl7-org:v3:QUQI_IN000003UV01_Cancel", output = "urn:hl7-org:v3:MCCI_IN000002UV01")
51      @WebMethod(operationName = "PDSupplier_QUQI_IN000003UV01_Cancel",
52                 action = "urn:hl7-org:v3:QUQI_IN000003UV01_Cancel")
53      String cancel(
54          @WebParam(partName = "Body", name = "QUQI_IN000003UV01_Cancel", targetNamespace = "urn:hl7-org:v3")
55          String request
56      );
57  }