Example code for MSB SDK
[msb/java-sdk.git] / example / src / main / java / org / onap / msb / sdk / example / common / Animal.java
1 /*******************************************************************************
2  * Copyright 2017 ZTE, Inc. and others.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5  * in compliance with the License. You may obtain a copy of the License at
6  * 
7  * http://www.apache.org/licenses/LICENSE-2.0
8  * 
9  * Unless required by applicable law or agreed to in writing, software distributed under the License
10  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
11  * or implied. See the License for the specific language governing permissions and limitations under
12  * the License.
13  ******************************************************************************/
14 package org.onap.msb.sdk.example.common;
15
16 import java.io.Serializable;
17
18 import com.fasterxml.jackson.annotation.JsonProperty;
19
20 public class Animal implements Serializable {
21
22   private static final long serialVersionUID = -717235590728668809L;
23
24   @JsonProperty
25   private String type;
26
27   @JsonProperty
28   private String name;
29
30   @JsonProperty
31   private int age;
32
33   public Animal() {}
34
35   public Animal(String type, String name, int age) {
36     this.type = type;
37     this.name = name;
38     this.age = age;
39   }
40
41   public String getType() {
42     return type;
43   }
44
45   public void setType(String type) {
46     this.type = type;
47   }
48
49   public String getName() {
50     return name;
51   }
52
53   public void setName(String name) {
54     this.name = name;
55   }
56
57   public int getAge() {
58     return age;
59   }
60
61   public void setAge(int age) {
62     this.age = age;
63   }
64
65   @Override
66   public String toString() {
67     return "Animal{" + "type='" + type + '\'' + ", name='" + name + '\'' + ", age=" + age + '}';
68   }
69 }