Modify ONAP PAP REST classes basic checkstyle
[policy/engine.git] / ONAP-PAP-REST / src / main / java / org / onap / policy / pap / xacml / rest / util / JsonMessage.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-PAP-REST
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.policy.pap.xacml.rest.util;
22
23 public class JsonMessage {
24
25     private String data;
26     private String data2;
27     private String data3;
28     public JsonMessage(String data) {
29         super();
30         this.data = data;
31     }
32     public JsonMessage(String data,String data2) {
33         super();
34         this.data = data;
35         this.data2 = data2;
36     }
37
38     public JsonMessage(String data,String data2,String data3) {
39         super();
40         this.data = data;
41         this.data2 = data2;
42         this.data3 = data3;
43     }
44
45     public String getData() {
46         return data;
47     }
48
49     public void setData(String data) {
50         this.data = data;
51     }
52     public String getData2() {
53         return data2;
54     }
55     public void setData2(String data2) {
56         this.data2 = data2;
57     }
58     public String getData3() {
59         return data3;
60     }
61     public void setData3(String data3) {
62         this.data3 = data3;
63     }
64
65
66 }
67