io.spotnext.cms.service.CmsRenderService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spot-cms-base Show documentation
Show all versions of spot-cms-base Show documentation
The spOt microservice framework.
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