aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/mso/MsoResponseWrapperInterface.java
blob: ad251bdeb309cbebf811d84a8f895f04334d89ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.onap.vid.mso;

import com.fasterxml.jackson.annotation.JsonProperty;

public interface MsoResponseWrapperInterface {
    @JsonProperty("entity")
    Object getEntity();

    @JsonProperty("status")
    int getStatus();

    @org.codehaus.jackson.annotate.JsonIgnore
    @com.fasterxml.jackson.annotation.JsonIgnore
    String getResponse();
}