org.onap migration
[vid.git] / vid-app-common / src / main / java / org / onap / vid / mso / MsoResponseWrapperInterface.java
1 package org.onap.vid.mso;
2
3 import com.fasterxml.jackson.annotation.JsonProperty;
4
5 public interface MsoResponseWrapperInterface {
6     @JsonProperty("entity")
7     Object getEntity();
8
9     @JsonProperty("status")
10     int getStatus();
11
12     @org.codehaus.jackson.annotate.JsonIgnore
13     @com.fasterxml.jackson.annotation.JsonIgnore
14     String getResponse();
15 }