Merge "Sending workflow data from UI to SO"
[vid.git] / vid-app-common / src / main / java / org / onap / vid / mso / rest / MockedWorkflowsRestClient.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.vid.mso.rest;
22
23 import java.util.Collections;
24 import org.jetbrains.annotations.NotNull;
25 import org.onap.vid.client.SyncRestClient;
26 import org.onap.vid.model.SOWorkflowParameterDefinitions;
27 import org.onap.vid.model.SOWorkflows;
28 import org.onap.vid.mso.MsoResponseWrapper2;
29
30 public class MockedWorkflowsRestClient {
31
32     private SyncRestClient syncRestClient;
33     private String baseUrl;
34
35     public MockedWorkflowsRestClient(SyncRestClient syncRestClient, String baseUrl) {
36         this.syncRestClient = syncRestClient;
37         this.baseUrl = baseUrl;
38     }
39
40     public MsoResponseWrapper2<SOWorkflows> getWorkflows(String vnfName) {
41         // Temporary skip vnfName and call mocked service
42         return new MsoResponseWrapper2<>(syncRestClient
43             .get(getWorkflowsUrl(),
44                 Collections.emptyMap(),
45                 Collections.emptyMap(),
46                 SOWorkflows.class));
47     }
48
49     public MsoResponseWrapper2<SOWorkflowParameterDefinitions> getWorkflowParameterDefinitions(Long workflowId) {
50         return new MsoResponseWrapper2<>(syncRestClient
51                 .get((workflowId <= 3 && workflowId > 0) ? getParametersUrl(workflowId) : getParametersUrl(),
52                         Collections.emptyMap(),
53                         Collections.emptyMap(),
54                         SOWorkflowParameterDefinitions.class));
55     }
56
57     @NotNull
58     private String getWorkflowsUrl() {
59         return baseUrl + "so/workflows";
60     }
61
62
63     @NotNull
64     private String getParametersUrl() {
65         return baseUrl + "so/workflow-parameters";
66     }
67
68     @NotNull
69     private String getParametersUrl(Long workflowId) {
70         return baseUrl + "so/workflow-parameters/" + workflowId;
71     }
72 }