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 com.google.ie.web.view.GsonView.java

/**
 * A custom view that is used to write JSON response. Typically used for Ajax
 * requests. Uses the Google Gson library to serialize objects into JSON
 * 
 * @author abraina
 * 

From source file com.id.get.expand.spring.MarshallingView.java

/**
 * Spring-MVC {@link View} that allows for response context to be rendered as the result
 * of marshalling by a {@link Marshaller}.
 *
 * <p>The Object to be marshalled is supplied as a parameter in the model and then
 * {@linkplain #locateToBeMarshalled(Map) detected} during response rendering. Users can

From source file no.dusken.aranea.view.FeedView.java

/**
 * Created by IntelliJ IDEA. User: maedhros Date: Aug 30, 2006 Time: 8:31:36 PM
 * To change this template use File | Settings | File Templates.
 */
public class FeedView extends AbstractView {
    private static final String DEFAULT_HOSTNAME = "www.underdusken.no";

From source file org.openmrs.module.usagestatistics.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.openmrs.module.usagestatistics668.web.view.chart.AbstractChartView.java

/**
 * Base class for views that render usage data
 * @author: Ye Cheng
 */
public abstract class AbstractChartView extends AbstractView {

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

/**
 * @author jricher
 *
 */
@Component(JWKSetView.VIEWNAME)
public class JWKSetView extends AbstractView {

From source file mrs.app.AbstractFileDownloadView.java

/**
 * Abstract View class used for downloading binary files. <br>
 * <p>
 * Writes binary data to the response object. Also, depending on the requirement, the following should be implemented in
 * subclass: <br>
 * a) Fetching the stream that writes to the response body <br>

From source file nl.flotsam.calendar.web.CalendarIcalView.java

public class CalendarIcalView extends AbstractView {

    private static final String CONTENT_TYPE = "text/calendar";

    public CalendarIcalView() {
        setContentType(CONTENT_TYPE);

From source file org.terasoluna.gfw.web.download.AbstractFileDownloadView.java

/**
 * Abstract View class used for downloading binary files. <br>
 * <p>
 * Writes binary data to the response object. Also, depending on the requirement, the following should be implemented in
 * subclass: <br>
 * a) Fetching the stream that writes to the response body <br>

From source file net.opentsdb.contrib.tsquare.web.view.DataQueryView.java

/**
 * Special view for streaming query result data from a {@link DataQueryModel}.
 * 
 * @author James Royalty (jroyalty) <i>[Jul 31, 2013]</i>
 */
public final class DataQueryView extends AbstractView {