1 package org.openecomp.dcae.dmaapbc.dbcapp.rest;
4 * Models the responses sent by the micro service in JSON format.
6 public class DbcUsvcRestResponse {
9 private String data, error, exception;
11 public int getStatus() {
15 public void setStatus(int status) {
19 public String getData() {
23 public void setData(String data) {
27 public String getError() {
31 public void setError(String error) {
35 public String getException() {
39 public void setException(String exception) {
40 this.exception = exception;