aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/openecomp/vid/model/ProxyResponse.java
blob: 132c54ad90e9023deccd932b70c6f1cdf01995c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.openecomp.vid.model;

/**
 * Created by Oren on 7/10/17.
 */
public class ProxyResponse {

    protected String errorMessage;

    protected int httpCode;

    public String getErrorMessage() {
        return errorMessage;
    }


    public int getHttpCode() {
        return httpCode;
    }

}