1 package org.onap.ccsdk.apps.controllerblueprints.service.model;
4 * CLass that would represent the response for the GET methods on the CBAService class
6 public class ItemCbaResponse {
9 private String description;
12 private String version;
14 public ItemCbaResponse() {
17 public String getId() {
21 public void setId(String id) {
25 public String getDescription() {
29 public void setDescription(String description) {
30 this.description = description;
33 public String getName() {
37 public void setName(String name) {
41 public int getState() {
45 public void setState(int state) {
49 public String getVersion() {
53 public void setVersion(String version) {
54 this.version = version;