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

io.spotnext.cms.service.CmsRenderService Maven / Gradle / Ivy

There is a newer version: 1.0.21-BETA-20190513
Show newest version
package io.spotnext.cms.service;

import java.io.OutputStream;

import javax.servlet.http.HttpServletRequest;

import io.spotnext.cms.rendering.view.View;

/**
 * 

CmsRenderService interface.

*/ public interface CmsRenderService { /** * Renders the given view into the outputstream. * * @param view a {@link io.spotnext.cms.rendering.view.View} object. * @param request a {@link javax.servlet.http.HttpServletRequest} object. * @param outputStream a {@link java.io.OutputStream} object. */ void renderView(View view, HttpServletRequest request, OutputStream outputStream); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy