fecb847b2d050ff542fa1538473da83af3bb7473
[aaf/authz.git] / cadi / client / src / main / java / org / onap / aaf / cadi / client / Result.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 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
22 package org.onap.aaf.cadi.client;
23
24 public class Result<T> {
25         public final int code;
26         public final T value;
27         public final String error;
28
29         private Result(int code, T value, String error) {
30                 this.code = code;
31                 this.value = value;
32                 this.error = error;
33         }
34
35         public static<T> Result<T> ok(int code,T t) {
36                 return new Result<T>(code,t,null);
37         }
38         
39         public static<T> Result<T> err(int code,String body) {
40                 return new Result<T>(code,null,body);
41         }
42
43         public static<T> Result<T> err(Result<?> r) {
44                 return new Result<T>(r.code,null,r.error);
45         }
46
47         public boolean isOK() {
48                 return error==null;
49         }
50         
51         public String toString() {
52                 StringBuilder sb = new StringBuilder("Code: ");
53                 sb.append(code);
54                 if(error!=null) {
55                         sb.append(" = ");
56                         sb.append(error);
57                 }
58                 return sb.toString();
59         }
60 }