View Javadoc
1   /*
2    * Copyright 2017 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.hpd.chpidd;
17  
18  import javax.jws.WebMethod;
19  import javax.jws.WebParam;
20  import javax.jws.WebResult;
21  import javax.jws.WebService;
22  import javax.jws.soap.SOAPBinding;
23  import javax.xml.bind.annotation.XmlSeeAlso;
24  import javax.xml.ws.Action;
25  
26  /**
27   * SEI for the CH-PIDD transaction (Swiss HPD extension)
28   *
29   * @author Dmytro Rud
30   */
31  @WebService(targetNamespace = "urn:ihe:iti:hpd:2010", name = "ProviderInformationDirectory_PortType", portName = "ProviderInformationDirectory_Port_Soap12")
32  @XmlSeeAlso({org.openehealth.ipf.commons.ihe.hpd.stub.chpidd.ObjectFactory.class, org.openehealth.ipf.commons.ihe.hpd.stub.dsmlv2.ObjectFactory.class})
33  @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
34  public interface ChPiddPortType {
35  
36      @WebMethod(operationName = "ProviderInformationDownloadRequest")
37      @Action(input = "urn:ihe:iti:2010:ProviderInformationDownload", output = "urn:ihe:iti:2010:ProviderInformationDownloadResponse")
38      @WebResult(name = "downloadResponse", targetNamespace = "urn:ehealth-suisse:names:tc:CS:1", partName = "body")
39      org.openehealth.ipf.commons.ihe.hpd.stub.chpidd.DownloadResponse providerInformationDownloadRequest(
40              @WebParam(partName = "body", name = "downloadRequest", targetNamespace = "urn:ehealth-suisse:names:tc:CS:1")
41                      org.openehealth.ipf.commons.ihe.hpd.stub.chpidd.DownloadRequest body
42      );
43  }