![JAR search and dependency download from the Maven repository](/logo.png)
com.falkonry.helper.models.HttpResponseFormat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client Show documentation
Show all versions of client Show documentation
Falkonry Java Client to access Condition Prediction APIs.
package com.falkonry.helper.models;
/*!
* falkonry-java-client
* Copyright(c) 2017 Falkonry Inc
* MIT Licensed
*/
import org.codehaus.jackson.annotate.JsonIgnoreProperties;
/**
*
*/
@JsonIgnoreProperties(ignoreUnknown=true)
public class HttpResponseFormat {
private int statusCode;
private String response;
/**
*
* @return
*/
public int getStatusCode() {
return statusCode;
}
/**
*
* @param statusCode
*/
public void setStatusCode(int statusCode) {
this.statusCode = statusCode;
}
/**
*
* @return
*/
public String getResponse() {
return response;
}
/**
*
* @param response
*/
public void setResponse(String response) {
this.response = response;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy