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.platform.camel.ihe.xds.iti86;
17  
18  import lombok.AllArgsConstructor;
19  import lombok.extern.slf4j.Slf4j;
20  import org.apache.camel.Exchange;
21  import org.openehealth.ipf.commons.ihe.xds.core.ebxml.ebxml30.RemoveDocumentsRequestType;
22  import org.openehealth.ipf.commons.ihe.xds.core.responses.ErrorCode;
23  import org.openehealth.ipf.commons.ihe.xds.core.responses.Response;
24  import org.openehealth.ipf.commons.ihe.xds.core.stub.ebrs30.rs.RegistryResponseType;
25  import org.openehealth.ipf.commons.ihe.xds.iti86.Iti86PortType;
26  import org.openehealth.ipf.platform.camel.core.util.Exchanges;
27  import org.openehealth.ipf.platform.camel.ihe.ws.AbstractWebService;
28  import org.openehealth.ipf.platform.camel.ihe.xds.core.converters.EbXML30Converters;
29  
30  /**
31   * Service implementation for the IHE ITI-86 transaction (Remove Documents).
32   *
33   * @since 3.3
34   */
35  @Slf4j
36  @AllArgsConstructor
37  public class Iti86Service extends AbstractWebService implements Iti86PortType {
38  
39      @Override
40      public RegistryResponseType documentRepositoryRemoveDocuments(RemoveDocumentsRequestType body) {
41          Exchange result = process(body);
42          Exception exception = Exchanges.extractException(result);
43          if (exception != null) {
44              log.debug(getClass().getSimpleName() + " service failed", exception);
45              Response errorResponse = new Response(
46                      exception,
47                      ErrorCode.REPOSITORY_METADATA_ERROR,
48                      ErrorCode.REPOSITORY_ERROR,
49                      null);
50              return EbXML30Converters.convert(errorResponse);
51          }
52          return Exchanges.resultMessage(result).getBody(RegistryResponseType.class);
53      }
54  
55  }