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

com.buabook.http.common.response.pojos.SuccessResponse Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
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