aboutsummaryrefslogtreecommitdiffstats
path: root/common-app-api/src/main/java/org/openecomp/sdc/common/http/client/api/HttpResponse.java
blob: c67345c813121a24bbb9dc1634691f0d0ff32568 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package org.openecomp.sdc.common.http.client.api;

import org.apache.commons.lang3.StringUtils;

public class HttpResponse<T> {
    private final T response;
    private final int statusCode;
    private final String description;

    public HttpResponse(T response, int statusCode) {
        this.response = response;
        this.statusCode = statusCode;
        this.description = StringUtils.EMPTY;
    }
    
    public HttpResponse(T response, int statusCode, String description) {
        this.response = response;
        this.statusCode = statusCode;
        this.description = description;
    }

    public T getResponse() {
        return response;
    }

    public int getStatusCode() {
        return statusCode;
    }

    public String getDescription() {
        return description;
    }

    @Override
    public String toString() {
        StringBuilder builder = new StringBuilder();
        builder.append("HttpResponse [response=");
        builder.append(response);
        builder.append(", statusCode=");
        builder.append(statusCode);
        builder.append(", description=");
        builder.append(description);
        builder.append("]");
        return builder.toString();
    }
    
    
}