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

com.iprogrammerr.bright.server.response.BlockedResponse Maven / Gradle / Ivy

package com.iprogrammerr.bright.server.response;

public final class BlockedResponse implements IntermediateResponse {

	private final Response response;

	public BlockedResponse(Response response) {
		this.response = response;
	}

	@Override
	public boolean canForward() {
		return false;
	}

	@Override
	public Response error() throws Exception {
		return this.response;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy