All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.brsanthu.googleanalytics.httpclient.HttpResponse Maven / Gradle / Ivy

package com.brsanthu.googleanalytics.httpclient;

public class HttpResponse {

    private int statusCode;

    public int getStatusCode() {
        return statusCode;
    }

    public HttpResponse setStatusCode(int statusCode) {
        this.statusCode = statusCode;
        return this;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy