DMAAP-83 Initial code import
[dmaap/dbcapi.git] / src / main / java / org / onap / dmaap / dbcapi / model / ApiError.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * org.onap.dmaap
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.dmaap.dbcapi.model;
22
23 import javax.xml.bind.annotation.XmlRootElement;
24
25 @XmlRootElement
26 public class ApiError {
27         private int code;
28         private String message;
29         private String fields;
30         
31         public int getCode() {
32                 return code;
33         }
34         public void setCode(int rc) {
35                 this.code = rc;
36         }
37         public String getMessage() {
38                 return message;
39         }
40         public void setMessage(String message) {
41                 this.message = message;
42         }
43         public String getFields() {
44                 return fields;
45         }
46         public void setFields(String fields) {
47                 this.fields = fields;
48         }
49         public String toString() {
50                 return String.format( "code=%d msg=%s fields=%s", this.code, this.message, this.fields );
51         }
52         public boolean is2xx() {
53                 
54                 return code >= 200 && code < 300;
55         }
56         public void reset() {
57                 code = 0;
58                 message = null;
59                 fields = null;
60         }
61 }