Use ByteStream instead of FileStream
[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 import java.io.ByteArrayOutputStream;
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 ByteArrayOutputStream 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     void set(int code, String message, String results) {
58         this.statusCode = code;
59         this.statusMessage = message;
60         this.results = results;
61     }
62
63     public ByteArrayOutputStream getOutputMessage() {
64         return out;
65     }
66
67     public void setOutputMessage(ByteArrayOutputStream out) {
68         this.out = out;
69     }
70
71     public int getStatusCode() {
72         return this.statusCode;
73     }
74
75     public void setStatusCode(int code) {
76         this.statusCode = code;
77     }
78
79     public String getStatusMessage() {
80         return this.statusMessage;
81     }
82
83     public void setStatusMessage(String message) {
84         this.statusMessage = message;
85     }
86
87     public String getResults() {
88         return this.results;
89     }
90
91     public void setResults(String results) {
92         this.results = results;
93     }
94
95     public int getSshExitStatus() {
96         return sshExitStatus;
97     }
98
99     public void setSshExitStatus(int sshExitStatus) {
100         this.sshExitStatus = sshExitStatus;
101     }
102 }