2  * ============LICENSE_START=======================================================
 
   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
 
  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.
 
  21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 
  22  * ============LICENSE_END=========================================================
 
  25 package org.onap.ccsdk.sli.adaptors.saltstack.model;
 
  28  * Simple class to store code and message returned by POST/GET to an Saltstack Server
 
  30 public class SaltstackResult {
 
  32     private static final String EMPTY_VALUE = "UNKNOWN";
 
  34     private int statusCode;
 
  35     private String statusMessage;
 
  36     private String results;
 
  38     private int sshExitStatus;
 
  40     public SaltstackResult() {
 
  41         this(-1, EMPTY_VALUE, EMPTY_VALUE, -1);
 
  44     public SaltstackResult(int code, String message) {
 
  45         this(code, message, EMPTY_VALUE, -1);
 
  48     public SaltstackResult(int code, String message, String result, int sshCode) {
 
  50         statusMessage = message;
 
  52         sshExitStatus = sshCode;
 
  55     void set(int code, String message, String results) {
 
  56         this.statusCode = code;
 
  57         this.statusMessage = message;
 
  58         this.results = results;
 
  61     public String getOutputFileName() {
 
  65     public void setOutputFileName(String out) {
 
  69     public int getStatusCode() {
 
  70         return this.statusCode;
 
  73     public void setStatusCode(int code) {
 
  74         this.statusCode = code;
 
  77     public String getStatusMessage() {
 
  78         return this.statusMessage;
 
  81     public void setStatusMessage(String message) {
 
  82         this.statusMessage = message;
 
  85     public String getResults() {
 
  89     public void setResults(String results) {
 
  90         this.results = results;
 
  93     public int getSshExitStatus() {
 
  97     public void setSshExitStatus(int sshExitStatus) {
 
  98         this.sshExitStatus = sshExitStatus;