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

com.byoutline.eventcallback.ResponseEventImpl Maven / Gradle / Ivy

package com.byoutline.eventcallback;

/**
 * Default implementation of {@link ResponseEvent}.
 *
 * @author Sebastian Kacprzak 
 */
public class ResponseEventImpl implements ResponseEvent {
    private R response;

    /**
     * @return body of response returned from server
     */
    public R getResponse() {
        return response;
    }

    @Override
    public void setResponse(R response) {
        this.response = response;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy