![JAR search and dependency download from the Maven repository](/logo.png)
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