com.buabook.http.common.response.pojos.SuccessResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-common Show documentation
Show all versions of http-common Show documentation
HTTP access functionality (c) 2016 - 2017 Sport Trades Ltd
package com.buabook.http.common.response.pojos;
/**
* BuaBook Success Response Object
* This class provides the a response object when a request succeeds and there is content to return.
* It will always return as a HTTP 200 status code.
* (c) 2016 Sport Trades Ltd
*
* @author Jas Rajasansir
* @version 1.0.0
* @since 28 Nov 2016
*/
public class SuccessResponse extends EmptySuccessResponse {
private final Object response;
public SuccessResponse(Object response) {
this.response = response;
}
public Object getResponse() {
return response;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy