aboutsummaryrefslogtreecommitdiffstats
path: root/deprecated-workflow-designer/sdc-workflow-designer-server/src/main/java/org/onap/sdc/workflowdesigner/externalservice/sdc/SDCServiceProxy.java
blob: 374bca7ad7cbfda7f0f2651c11795971b7d41fbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/**
 * Copyright 2017-2018 ZTE Corporation.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.onap.sdc.workflowdesigner.externalservice.sdc;

import org.glassfish.jersey.client.ClientConfig;
import org.onap.sdc.workflowdesigner.common.SDCProxyException;
import org.onap.sdc.workflowdesigner.config.AppConfig;
import org.onap.sdc.workflowdesigner.externalservice.sdc.entity.WorkflowArtifactInfo;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.eclipsesource.jaxrs.consumer.ConsumerFactory;

/**
 * 
 */
public class SDCServiceProxy {
  private static final Logger LOGGER = LoggerFactory.getLogger(SDCService.class);

  private static final String AUTHORIZATION = AppConfig.getSdcServiceProxy().getAuthorization();

  private static final String X_ECOMP_INSTANCE_ID =
      AppConfig.getSdcServiceProxy().getxEcompInstanceId();
  /** */
  private static final String SDC_ROOT_PATH = "/sdc/v1";


  private static String getSDCRootPath() {
    return AppConfig.getSdcServiceProxy().getServiceAddr() + SDC_ROOT_PATH;
  }

  /**
   * @return
   */
  private SDCService getSDCServiceProxy() {
    ClientConfig config = new ClientConfig();
    return ConsumerFactory.createConsumer(getSDCRootPath(), config, SDCService.class);
  }

  /**
   * 
   * @param uuid
   * @param operationId
   * @param workflowId
   * @param workflowArtifactInfo
   * @throws SDCProxyException
   */
  public void saveWorkflowArtifact(String uuid, String operationId, String workflowId,
      WorkflowArtifactInfo workflowArtifactInfo) throws SDCProxyException {
    SDCService serviceProxy = getSDCServiceProxy();
    try {
      serviceProxy.saveWorkflowArtifact(uuid, operationId, workflowId, X_ECOMP_INSTANCE_ID,
          AUTHORIZATION, workflowArtifactInfo);
    } catch (Exception e) {
      LOGGER.error("Save WorkflowArtifact Failed.", e);
      throw new SDCProxyException("Save WorkflowArtifact Failed.", e);
    }
  }

  /**
   * 
   * @param uuid
   * @param operationId
   * @param workflowId
   * @return
   * @throws SDCProxyException
   */
  public WorkflowArtifactInfo getWorkflowArtifact(String uuid, String operationId,
      String workflowId) throws SDCProxyException {
    SDCService serviceProxy = getSDCServiceProxy();
    try {
      return serviceProxy.getWorkflowArtifact(uuid, operationId, workflowId, X_ECOMP_INSTANCE_ID,
          AUTHORIZATION);
    } catch (Exception e) {
      LOGGER.error("Get WorkflowArtifact Failed.", e);
      throw new SDCProxyException("Get WorkflowArtifact Failed.", e);
    }
  }


}