View Javadoc
1   /*
2    * Copyright 2011 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.platform.camel.ihe.xds;
17  
18  import org.openehealth.ipf.commons.ihe.ws.*;
19  import org.openehealth.ipf.commons.ihe.xds.core.audit.XdsAuditDataset;
20  import org.openehealth.ipf.platform.camel.ihe.ws.AbstractWebService;
21  import org.openehealth.ipf.platform.camel.ihe.ws.AbstractWsComponent;
22  import org.openehealth.ipf.platform.camel.ihe.ws.AbstractWsEndpoint;
23  import org.openehealth.ipf.platform.camel.ihe.ws.AbstractWsProducer;
24  
25  import java.util.Map;
26  
27  /**
28   * Camel Endpoint implementation for XDS-like transactions
29   * which have only a single Web Service operation.
30   *
31   * @author Dmytro Rud
32   */
33  public class XdsAsyncResponseEndpoint<AuditDatasetType extends XdsAuditDataset> extends AbstractWsEndpoint<AuditDatasetType, WsTransactionConfiguration<AuditDatasetType>> {
34  
35      public XdsAsyncResponseEndpoint(
36              String endpointUri,
37              String address,
38              AbstractWsComponent<AuditDatasetType, WsTransactionConfiguration<AuditDatasetType>, ? extends WsInteractionId<WsTransactionConfiguration<AuditDatasetType>>> component,
39              Map<String, Object> parameters,
40              Class<? extends AbstractWebService> serviceClass) {
41          super(endpointUri, address, component, parameters, serviceClass);
42      }
43  
44      @Override
45      public JaxWsClientFactory<AuditDatasetType> getJaxWsClientFactory() {
46          return null;   // no producer support
47      }
48  
49  
50      @Override
51      public JaxWsServiceFactory<AuditDatasetType> getJaxWsServiceFactory() {
52          return new JaxWsAsyncResponseServiceFactory<>(
53                  getComponent().getWsTransactionConfiguration(),
54                  getServiceAddress(),
55                  isAudit() ? getComponent().getServerAuditStrategy() : null,
56                  getAuditContext(),
57                  getCustomInterceptors(),
58                  getCorrelator());
59      }
60  
61      @Override
62      public AbstractWsProducer<AuditDatasetType, WsTransactionConfiguration<AuditDatasetType>, ?, ?> getProducer(AbstractWsEndpoint<AuditDatasetType, WsTransactionConfiguration<AuditDatasetType>> endpoint,
63                                                                                                                  JaxWsClientFactory<AuditDatasetType> clientFactory) {
64          throw new IllegalStateException("No producer support for asynchronous response endpoints");
65      }
66  }