Merge "Change the copyright to 2018"
[so.git] / common / src / main / java / org / openecomp / mso / client / aai / entities / ServiceException.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.openecomp.mso.client.aai.entities;
22
23 import java.util.ArrayList;
24 import java.util.List;
25
26 import com.fasterxml.jackson.annotation.JsonInclude;
27 import com.fasterxml.jackson.annotation.JsonProperty;
28 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
29
30 @JsonInclude(JsonInclude.Include.NON_NULL)
31 @JsonPropertyOrder({
32     "messageId",
33     "text",
34     "variables"
35 })
36 public class ServiceException {
37
38     @JsonProperty("messageId")
39     private String messageId;
40     @JsonProperty("text")
41     private String text;
42     @JsonProperty("variables")
43     private List<String> variables = new ArrayList<>();
44
45     @JsonProperty("messageId")
46     public String getMessageId() {
47         return messageId;
48     }
49
50     @JsonProperty("messageId")
51     public void setMessageId(String messageId) {
52         this.messageId = messageId;
53     }
54
55     @JsonProperty("text")
56     public String getText() {
57         return text;
58     }
59
60     @JsonProperty("text")
61     public void setText(String text) {
62         this.text = text;
63     }
64
65     @JsonProperty("variables")
66     public List<String> getVariables() {
67         return variables;
68     }
69
70     @JsonProperty("variables")
71     public void setVariables(List<String> variables) {
72         this.variables = variables;
73     }
74
75 }