Example usage for org.springframework.web.servlet.view AbstractView subclass-usage

List of usage examples for org.springframework.web.servlet.view AbstractView subclass-usage

Introduction

In this page you can find the example usage for org.springframework.web.servlet.view AbstractView subclass-usage.

Usage

From source file org.openmrs.module.tracpatienttransfer.web.view.chart.AbstractChartView.java

/**
 * Base class for views that render usage data as a comma separated values
 */
public abstract class AbstractChartView extends AbstractView {

    protected static final Log log = LogFactory.getLog(AbstractChartView.class);

From source file org.webcurator.ui.target.controller.ContentView.java

/**
 * A Spring View implementation that displays a raw content file.
 * @author beaumontb
 *
 */
public class ContentView extends AbstractView {

From source file org.webcurator.ui.target.controller.AttachmentView.java

/**
 * A Spring View implementation that generates an attachment.
 * @author beaumontb
 *
 */
public class AttachmentView extends AbstractView {

From source file com.wavemaker.runtime.server.view.DownloadView.java

/**
 * Provides a suitable view for download servlets. If a DownloadObject is present, it will send the pieces from that; if
 * not, the String representation of the result will be sent.
 * 
 * @author Matt Small
 */

From source file arena.web.view.RedirectView.java

public class RedirectView extends AbstractView {
    private final Log log = LogFactory.getLog(RedirectView.class);

    private String url;
    private boolean serverSideRedirect = false;
    private boolean allowRequestArgsInURI = false;

From source file fi.arcusys.oulu.web.AjaxView.java

/**
 * Implements ajax view for ajax response in json format
 * @author Jinhua Chen
 * May 11, 2011
 */
public class AjaxView extends AbstractView {

From source file ru.org.linux.spring.AbstractRomeView.java

/**
 * User: rsvato
 * Date: Jun 1, 2009
 * Time: 3:20:02 PM
 */
public abstract class AbstractRomeView extends AbstractView {

From source file org.mitre.openid.connect.view.ExceptionAsJSONView.java

/**
 * @author nemonik
 *
 */
@Component("exceptionAsJSONView")
public class ExceptionAsJSONView extends AbstractView {

From source file org.tec.webapp.web.view.JSONView.java

/**
 * base spring view for application that is json data
 */
public class JSONView extends AbstractView {
    /** the logger */
    protected Log mLogger = LogFactory.getLog(this.getClass());

From source file de.iew.web.view.js.RequireJSMessageBundleView.java

/**
 * Implementiert ein View zum Rendern eines {@link MessageBundleStore} in
 * Javascript.
 * <p>
 * Wir verwenden diese View um requireJS kompatible Sprachpakete zu rendern.
 * Damit knnen wir das I18n-Paket von requireJS verwenden.