Upgrade sonar plugin
[vid.git] / vid-app-common / src / main / java / org / openecomp / vid / mso / rest / Response.java
1 package org.openecomp.vid.mso.rest;
2
3 import com.fasterxml.jackson.annotation.JsonProperty;
4
5 public class Response {
6
7     /** The status. */
8     private int status;
9
10     /** The entity. */
11     private RequestList entity;
12
13     /**
14      * Gets the status.
15      *
16      * @return     The status
17      */
18     @JsonProperty("status")
19     public int getStatus() {
20         return status;
21     }
22
23     /**
24      * Sets the status.
25      *
26      * @param status     The status
27      */
28     @JsonProperty("status")
29     public void setStatus(int status) {
30         this.status = status;
31     }
32
33     /**
34      * Gets the entity.
35      *
36      * @return     The entity
37      */
38     @JsonProperty("entity")
39     public RequestList getEntity() {
40         return entity;
41     }
42
43     /**
44      * Sets the entity.
45      *
46      * @param entity     The entity
47      */
48     @JsonProperty("entity")
49     public void setEntity(RequestList entity) {
50         this.entity = entity;
51     }
52
53
54 }