ffa4683c02593bdbe58a81047576fb3e4c00ae70
[msb/discovery.git] / sdclient / discovery-service / src / main / java / org / onap / msb / sdclient / core / Check.java
1 /**
2  * Copyright 2016 ZTE, Inc. and others.
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 package org.onap.msb.sdclient.core;
17
18 import java.io.Serializable;
19
20 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
21 import com.fasterxml.jackson.annotation.JsonProperty;
22
23 @JsonIgnoreProperties(ignoreUnknown = true)  
24 public class Check implements Serializable {
25    
26
27     private static final long serialVersionUID = 1L;
28     
29     @JsonProperty("CheckID")
30     private String checkID;
31     
32     @JsonProperty("Name")
33     private String name;
34     
35     @JsonProperty("Status")
36     private String status;
37
38     public String getCheckID() {
39         return checkID;
40     }
41
42     public void setCheckID(String checkID) {
43         this.checkID = checkID;
44     }
45
46     public String getName() {
47         return name;
48     }
49
50     public void setName(String name) {
51         this.name = name;
52     }
53
54     public String getStatus() {
55         return status;
56     }
57
58     public void setStatus(String status) {
59         this.status = status;
60     }
61     
62
63
64     
65 }