CommonLibrary(util/rest-client) code upload.
[vfc/nfvo/wfengine.git] / rest-client / src / test / java / org / openo / baseservice / roa / util / clientsdk / demo / JsonTestClass.java
1 /*
2  * Copyright (c) 2016, Huawei Technologies Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.openo.baseservice.roa.util.clientsdk.demo;
18
19 /**
20  * <br/>
21  * <p>
22  * </p>
23  * 
24  * @author
25  * @version SDNO 0.5 13-Jun-2016
26  */
27 public class JsonTestClass {
28
29     /**
30      * 
31      */
32     private String name;
33
34     /**
35      * 
36      */
37     private int id;
38
39     /**
40      * Constructor<br/>
41      * <p>
42      * </p>
43      * 
44      * @since SDNO 0.5
45      */
46     public JsonTestClass() {
47     }
48
49     /**
50      * <br/>
51      * 
52      * @return
53      * @since SDNO 0.5
54      */
55     public String getName() {
56         return name;
57     }
58
59     /**
60      * <br/>
61      * 
62      * @param name
63      * @since SDNO 0.5
64      */
65     public void setName(String name) {
66         this.name = name;
67     }
68
69     /**
70      * <br/>
71      * 
72      * @return
73      * @since SDNO 0.5
74      */
75     public int getId() {
76         return id;
77     }
78
79     /**
80      * <br/>
81      * 
82      * @param id
83      * @since SDNO 0.5
84      */
85     public void setId(int id) {
86         this.id = id;
87     }
88 }