de6b180efe68c7e6720be5d8a1ba01c92277b61a
[appc.git] / appc-adapters / appc-ansible-adapter / appc-ansible-adapter-bundle / src / main / java / org / onap / appc / adapter / ansible / model / AnsibleResult.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  * ============LICENSE_END=========================================================
22  */
23
24 package org.onap.appc.adapter.ansible.model;
25
26 /**
27  *  Simple class to store code and message returned by POST/GET to an Ansible Server
28  */
29 public class AnsibleResult {
30
31     private static final String EMPTY_VALUE = "UNKNOWN";
32
33     private int statusCode;
34     private String statusMessage;
35     private String results;
36     private String output;
37
38     public AnsibleResult() {
39         this(-1, EMPTY_VALUE, EMPTY_VALUE);
40     }
41
42     public AnsibleResult(int code, String message) {
43         this(code, message, EMPTY_VALUE);
44     }
45
46     public AnsibleResult(int code, String message, String result) {
47         statusCode = code;
48         statusMessage = message;
49         results = result;
50     }
51
52     public AnsibleResult(int code, String message, String result, String outputData) {
53         statusCode = code;
54         statusMessage = message;
55         results = result;
56         output = outputData;
57     }
58
59     public String getOutput() {
60         return output;
61     }
62
63     public void setOutput(String output) {
64    this.output = output;
65    }
66
67     public void setStatusCode(int code) {
68         this.statusCode = code;
69     }
70
71     public void setStatusMessage(String message) {
72         this.statusMessage = message;
73     }
74
75     public void setResults(String results) {
76         this.results = results;
77     }
78
79     void set(int code, String message, String results, String output) {
80         this.statusCode = code;
81         this.statusMessage = message;
82         this.results = results;
83         this.output = output;
84
85     }
86
87     public int getStatusCode() {
88         return this.statusCode;
89     }
90
91     public String getStatusMessage() {
92         return this.statusMessage;
93     }
94
95     public String getResults() {
96         return this.results;
97     }
98 }