Merge "Reorder modifiers"
[so.git] / adapters / mso-catalog-db-adapter / src / main / java / org / openecomp / mso / adapters / catalogdb / catalogrest / CatalogQueryException.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 package org.openecomp.mso.adapters.catalogdb.catalogrest;
21
22 import javax.xml.bind.annotation.XmlRootElement;
23 import java.io.Serializable;
24
25 @XmlRootElement(name = "catalogQueryException")
26 public class CatalogQueryException extends CatalogQueryExceptionCommon implements Serializable {
27     private static final long serialVersionUID = -9062290006520066109L;
28
29     private String message;
30         private CatalogQueryExceptionCategory category;
31         private Boolean rolledBack;
32
33         public CatalogQueryException () {}
34
35         public CatalogQueryException (String message) {
36                 this.message = message;
37         }
38
39         public CatalogQueryException (String message, CatalogQueryExceptionCategory category, boolean rolledBack, String messageid) {
40                 super(messageid);
41                 this.message = message;
42                 this.category = category;
43                 this.rolledBack = rolledBack;
44         }
45
46         public String getMessage() { return message; }
47         public void setMessage(String message) { this.message = message; }
48
49         public CatalogQueryExceptionCategory getCategory () { return category; }
50         public void setCategory (CatalogQueryExceptionCategory category) { this.category = category; }
51
52         public Boolean getRolledBack() { return rolledBack; }
53         public void setRolledBack(Boolean rolledBack) { this.rolledBack = rolledBack; }
54 }