[feature/APPC-6]
[appc.git] / appc-adapters / appc-ansible-adapter / appc-ansible-adapter-bundle / src / main / java / org / openecomp / appc / adapter / ansible / model / AnsibleResult.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright (C) 2017 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22
23 package org.openecomp.appc.adapter.ansible.model;
24
25
26 /* Simple class to store code and message returned by POST/GET to an Ansible Server */
27 public class AnsibleResult{
28     private int StatusCode;
29     private String StatusMessage;
30     private String Results;
31     
32
33     public    AnsibleResult(){
34         StatusCode = -1;
35         StatusMessage = "UNKNOWN";
36         Results = "UNKNOWN";
37
38     }
39
40     // constructor
41     public AnsibleResult(int code, String message, String result){
42         StatusCode = code;
43         StatusMessage = message;
44         Results = result;
45     }
46
47     //*************************************************
48     // Various set methods
49     public void setStatusCode(int code){
50         this.StatusCode = code;
51     }
52
53     public void setStatusMessage(String message){
54         this.StatusMessage = message;
55     }
56
57     public void setResults(String results){
58         this.Results = results;
59     }
60     
61
62     void set(int code, String message, String results){
63         this.StatusCode = code;
64         this.StatusMessage = message;
65         this.Results = results;
66
67     }
68
69     //*********************************************
70     // Various get methods
71     public int getStatusCode(){
72         return this.StatusCode;
73     }
74
75     public String getStatusMessage(){
76         return this.StatusMessage;
77     }
78
79     public String getResults(){
80         return this.Results;
81     }
82
83
84 }
85