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

org.analogweb.Renderable Maven / Gradle / Ivy

The newest version!
package org.analogweb;

import java.io.IOException;

/**
 * A renderable response.
 *
 * @author snowgoose
 */
public interface Renderable {

    /**
     * Render invocation result to response.
     *
     * @param context
     *            {@link RequestContext}
     * @param response
     *            {@link ResponseContext}
     *
     * @throws IOException
     *             I/O error.
     * @throws WebApplicationException
     *             other exception.
     */
    Response render(RequestContext context, ResponseContext response) throws IOException, WebApplicationException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy