0d3a8bb20af551d87ef65fd4c0631606ceffd3d3
[aai/search-data-service.git] / search-data-service / src / main / java / org / onap / aai / sa / searchdbabstraction / entity / OperationResult.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 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  */
21 package org.onap.aai.sa.searchdbabstraction.entity;
22
23 public class OperationResult {
24
25     private int resultCode;
26
27     private String failureCause;
28     private String resultVersion;
29     private String result;
30     private ErrorResult error;
31
32     public int getResultCode() {
33         return resultCode;
34     }
35
36     public void setResultCode(int resultCode) {
37         this.resultCode = resultCode;
38     }
39
40     public String getFailureCause() {
41         return failureCause;
42     }
43
44     public void setFailureCause(String failureCause) {
45         this.failureCause = failureCause;
46     }
47
48     public String getResultVersion() {
49         return resultVersion;
50     }
51
52     public void setResultVersion(String resultVersion) {
53         this.resultVersion = resultVersion;
54     }
55
56     public String getResult() {
57         return result;
58     }
59
60     public void setResult(String result) {
61         this.result = result;
62     }
63
64     public ErrorResult getError() {
65         return error;
66     }
67
68     public void setError(ErrorResult error) {
69         this.error = error;
70     }
71
72     @Override
73     public String toString() {
74         return "OperationResult [resultCode=" + resultCode + ", failureCause=" + failureCause + ", resultVersion="
75                 + resultVersion + ", result=" + result + ", error=" + error + "]";
76     }
77
78 }