2  * ============LICENSE_START=======================================================
 
   4  * ================================================================================
 
   5  * Copyright (C) 2018 Samsung Electronics. All rights reserved.
 
   6  * ================================================================================
 
   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
 
  13  *      http://www.apache.org/licenses/LICENSE-2.0
 
  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.
 
  22  * ============LICENSE_END=========================================================
 
  25 package org.onap.ccsdk.sli.adaptors.saltstack.model;
 
  27 import java.io.ByteArrayOutputStream;
 
  30  * Simple class to store code and message returned by POST/GET to an Saltstack Server
 
  32 public class SaltstackResult {
 
  34     private static final String EMPTY_VALUE = "UNKNOWN";
 
  36     private int statusCode;
 
  37     private String statusMessage;
 
  38     private String results;
 
  39     private ByteArrayOutputStream out;
 
  40     private int sshExitStatus;
 
  42     public SaltstackResult() {
 
  43         this(-1, EMPTY_VALUE, EMPTY_VALUE, -1);
 
  46     public SaltstackResult(int code, String message) {
 
  47         this(code, message, EMPTY_VALUE, -1);
 
  50     public SaltstackResult(int code, String message, String result, int sshCode) {
 
  52         statusMessage = message;
 
  54         sshExitStatus = sshCode;
 
  57     void set(int code, String message, String results) {
 
  58         this.statusCode = code;
 
  59         this.statusMessage = message;
 
  60         this.results = results;
 
  63     public ByteArrayOutputStream getOutputMessage() {
 
  67     public void setOutputMessage(ByteArrayOutputStream out) {
 
  71     public int getStatusCode() {
 
  72         return this.statusCode;
 
  75     public void setStatusCode(int code) {
 
  76         this.statusCode = code;
 
  79     public String getStatusMessage() {
 
  80         return this.statusMessage;
 
  83     public void setStatusMessage(String message) {
 
  84         this.statusMessage = message;
 
  87     public String getResults() {
 
  91     public void setResults(String results) {
 
  92         this.results = results;
 
  95     public int getSshExitStatus() {
 
  99     public void setSshExitStatus(int sshExitStatus) {
 
 100         this.sshExitStatus = sshExitStatus;