com.app55.transport.HttpResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of app55-java Show documentation
Show all versions of app55-java Show documentation
App55 client library for the Java platform.
The newest version!
package com.app55.transport;
public class HttpResponse
{
private int statusCode;
private String content;
public HttpResponse(int statusCode, String content)
{
this.statusCode = statusCode;
this.content = content;
}
public int getStatusCode()
{
return statusCode;
}
public void setStatusCode(int statusCode)
{
this.statusCode = statusCode;
}
public String getContent()
{
return content;
}
public void setContent(String content)
{
this.content = content;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy