reqExec API implemented for saltstack
[ccsdk/sli/adaptors.git] / saltstack-adapter / saltstack-adapter-provider / src / main / java / org / onap / ccsdk / sli / adaptors / saltstack / model / SaltstackResult.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.ccsdk.sli.adaptors.saltstack.model;
26
27 import java.io.OutputStream;
28
29 /**
30  *  Simple class to store code and message returned by POST/GET to an Saltstack Server
31  */
32 public class SaltstackResult {
33
34     private static final String EMPTY_VALUE = "UNKNOWN";
35
36     private int statusCode;
37     private String statusMessage;
38     private String results;
39     private String out;
40     private int sshExitStatus;
41
42     public SaltstackResult() {
43         this(-1, EMPTY_VALUE, EMPTY_VALUE, -1);
44     }
45
46     public SaltstackResult(int code, String message) {
47         this(code, message, EMPTY_VALUE, -1);
48     }
49
50     public SaltstackResult(int code, String message, String result, int sshCode) {
51         statusCode = code;
52         statusMessage = message;
53         results = result;
54         sshExitStatus = sshCode;
55     }
56
57     public void setStatusCode(int code) {
58         this.statusCode = code;
59     }
60
61     public void setStatusMessage(String message) {
62         this.statusMessage = message;
63     }
64
65     public void setResults(String results) {
66         this.results = results;
67     }
68
69     void set(int code, String message, String results) {
70         this.statusCode = code;
71         this.statusMessage = message;
72         this.results = results;
73     }
74
75     public void setOutputFileName (String out) {
76         this.out = out;
77     }
78
79     public String getOutputFileName() {
80         return out;
81     }
82
83     public int getStatusCode() {
84         return this.statusCode;
85     }
86
87     public String getStatusMessage() {
88         return this.statusMessage;
89     }
90
91     public String getResults() {
92         return this.results;
93     }
94
95     public int getSshExitStatus() {
96         return sshExitStatus;
97     }
98
99     public void setSshExitStatus(int sshExitStatus) {
100         this.sshExitStatus = sshExitStatus;
101     }
102 }