21c10ffac3968880bf94b5a4b6b5394946c91f5e
[vid.git] / vid-app-common / src / main / java / org / onap / vid / job / command / HttpCallCommand.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.job.command;
22
23 import com.google.common.collect.ImmutableMap;
24 import org.onap.vid.job.Job;
25 import org.onap.vid.job.JobCommand;
26 import org.onap.vid.job.NextCommand;
27 import org.onap.vid.job.impl.JobSharedData;
28 import org.springframework.beans.factory.config.ConfigurableBeanFactory;
29 import org.springframework.context.annotation.Scope;
30 import org.springframework.stereotype.Component;
31
32 import javax.ws.rs.client.ClientBuilder;
33 import javax.ws.rs.client.Entity;
34 import java.util.Map;
35 import java.util.UUID;
36
37
38 @Component
39 @Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE)
40 public class HttpCallCommand implements JobCommand {
41     private String url;
42     private UUID uuid;
43
44     public HttpCallCommand() {
45     }
46
47     public HttpCallCommand(String url, UUID uuid) {
48         init(url, uuid);
49     }
50
51     @Override
52     public NextCommand call() {
53         ClientBuilder.newClient().target(url).request().post(Entity.text(uuid.toString()));
54         return new NextCommand(Job.JobStatus.COMPLETED);
55     }
56
57     @Override
58     public HttpCallCommand init(JobSharedData sharedData, Map<String, Object> commandData) {
59         return init((String) commandData.get("url"), sharedData.getJobUuid());
60     }
61
62     private HttpCallCommand init(String url, UUID jobUuid) {
63         this.url = url;
64         this.uuid = jobUuid;
65         return this;
66     }
67
68     @Override
69     public Map<String, Object> getData() {
70         return ImmutableMap.of("url", url);
71     }
72 }