0752df9b6c75dabecd6b4050ea40e244450cd90e
[ccsdk/cds.git] /
1 package org.onap.ccsdk.apps.controllerblueprints.service.model;
2
3 /**
4  * CLass that would represent the response for the GET methods on the CBAService class
5  */
6 public class ItemCbaResponse {
7
8     private String id;
9     private String description;
10     private String name;
11     private int state;
12     private String version;
13
14     public ItemCbaResponse() {
15     }
16
17     public String getId() {
18         return id;
19     }
20
21     public void setId(String id) {
22         this.id = id;
23     }
24
25     public String getDescription() {
26         return description;
27     }
28
29     public void setDescription(String description) {
30         this.description = description;
31     }
32
33     public String getName() {
34         return name;
35     }
36
37     public void setName(String name) {
38         this.name = name;
39     }
40
41     public int getState() {
42         return state;
43     }
44
45     public void setState(int state) {
46         this.state = state;
47     }
48
49     public String getVersion() {
50         return version;
51     }
52
53     public void setVersion(String version) {
54         this.version = version;
55     }
56
57
58 }