30062a01447c4e130a210f01cb69a20ab5caf4ea
[so.git] / adapters / mso-openstack-adapters / src / main / java / org / onap / so / adapters / valet / GenericValetResponse.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.adapters.valet;
22
23 import org.apache.commons.lang3.builder.ToStringBuilder;
24
25 /*
26  * The purpose of this class is to encapsulate the possible responses from Valet in to one generic class
27  * that the vnf adapter can more easily utilize. This will ensure we get an object back. Any status
28  * code other than 200 will be treated as a failure.  We may still get a 200 back - but the 
29  * ValetStatus.status is "failed" - which will also be treated as a failure. The T class is 
30  * expected to be one of the Valet*Response pojos.  
31  */
32 public class GenericValetResponse<T> {
33         private int statusCode;
34         private String errorMessage;
35         private T returnObject;
36         
37
38         public GenericValetResponse(int statusCode, String errorMessage, T obj) {
39                 super();
40                 this.statusCode = statusCode;
41                 this.errorMessage = errorMessage;
42                 this.returnObject = obj;
43         }
44         public GenericValetResponse() {
45                 this(-1, "not set", null);
46         }
47         @Override
48         public String toString() {
49                 return new ToStringBuilder(this).append("statusCode", statusCode).append("errorMessage", errorMessage)
50                                 .append("returnObject", returnObject).toString();
51         }
52         public void setErrorMessage(String errorMessage) {
53                 this.errorMessage = errorMessage;
54         }
55         public String getErrorMessage() {
56                 return this.errorMessage;
57         }
58         public void setStatusCode(int statusCode) {
59                 this.statusCode = statusCode;
60         }
61         public int getStatusCode() {
62                 return this.statusCode;
63         }
64         public void setReturnObject(T obj) {
65                 this.returnObject = obj;
66         }
67         public T getReturnObject() {
68                 return this.returnObject;
69         }
70         
71 }
72