saltstack to take env and file param
[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 : CCSDK
4  * ================================================================================
5  * Copyright (C) 2018 Samsung Electronics. All rights reserved.
6  * ================================================================================
7  *
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  *
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.ccsdk.sli.adaptors.saltstack.model;
26
27 /**
28  * Simple class to store code and message returned by POST/GET to an Saltstack Server
29  */
30 public class SaltstackResult {
31
32     private static final String EMPTY_VALUE = "UNKNOWN";
33
34     private int statusCode;
35     private String statusMessage;
36     private String results;
37     private String out;
38     private int sshExitStatus;
39
40     public SaltstackResult() {
41         this(-1, EMPTY_VALUE, EMPTY_VALUE, -1);
42     }
43
44     public SaltstackResult(int code, String message) {
45         this(code, message, EMPTY_VALUE, -1);
46     }
47
48     public SaltstackResult(int code, String message, String result, int sshCode) {
49         statusCode = code;
50         statusMessage = message;
51         results = result;
52         sshExitStatus = sshCode;
53     }
54
55     void set(int code, String message, String results) {
56         this.statusCode = code;
57         this.statusMessage = message;
58         this.results = results;
59     }
60
61     public String getOutputFileName() {
62         return out;
63     }
64
65     public void setOutputFileName(String out) {
66         this.out = out;
67     }
68
69     public int getStatusCode() {
70         return this.statusCode;
71     }
72
73     public void setStatusCode(int code) {
74         this.statusCode = code;
75     }
76
77     public String getStatusMessage() {
78         return this.statusMessage;
79     }
80
81     public void setStatusMessage(String message) {
82         this.statusMessage = message;
83     }
84
85     public String getResults() {
86         return this.results;
87     }
88
89     public void setResults(String results) {
90         this.results = results;
91     }
92
93     public int getSshExitStatus() {
94         return sshExitStatus;
95     }
96
97     public void setSshExitStatus(int sshExitStatus) {
98         this.sshExitStatus = sshExitStatus;
99     }
100 }