Example usage for org.springframework.web.servlet.mvc ParameterizableViewController subclass-usage

List of usage examples for org.springframework.web.servlet.mvc ParameterizableViewController subclass-usage

Introduction

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

Usage

From source file org.madsonic.controller.AvatarUploadController.java

/**
 * Controller which receives uploaded avatar images.
 *
 * @author Sindre Mehus
 */
public class AvatarUploadController extends ParameterizableViewController {

From source file org.openmrs.module.vcttrac.web.controller.VCTSaveCounselingViewController.java

/**
 * @author Yves GAKUBA
 */
public class VCTSaveCounselingViewController extends ParameterizableViewController {

    private Log log = LogFactory.getLog(getClass());

From source file org.openmrs.module.vcttrac.web.controller.VCTReceptionOfResultController.java

/**
 * @author Yves GAKUBA
 */
public class VCTReceptionOfResultController extends ParameterizableViewController {

    private Log log = LogFactory.getLog(getClass());

From source file net.sourceforge.subsonic.controller.AvatarUploadController.java

/**
 * Controller which receives uploaded avatar images.
 *
 * @author Sindre Mehus
 */
public class AvatarUploadController extends ParameterizableViewController {

From source file it.cilea.osd.jdyna.web.controller.SearchPointerController.java

public abstract class SearchPointerController<PD extends PropertiesDefinition, T extends Selectable>
        extends ParameterizableViewController {
    protected final Log logger = LogFactory.getLog(getClass());

    private ITabService applicationService;

From source file org.openmrs.module.logmanager.web.controller.LogViewerController.java

/**
 * Controller for log view page
 */
public class LogViewerController extends ParameterizableViewController {

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

From source file org.openmrs.module.ezvacimmunization.web.controller.SavePatientsVaccinesController.java

public class SavePatientsVaccinesController extends ParameterizableViewController {

    /** Logger for this class and subclasses */
    protected final Log log = LogFactory.getLog(getClass());
    protected ImmunizationServiceImpl imm = new ImmunizationServiceImpl();

From source file org.openmrs.module.tracpatienttransfer.web.controller.ExitPatientFromCareListController.java

/**
 * @author Yves GAKUBA
 */
public class ExitPatientFromCareListController extends ParameterizableViewController {

    /** Logger for this class and subclasses */

From source file org.openmrs.module.logmanager.web.controller.ConfigController.java

/**
 * Controller for tools page
 */
public class ConfigController extends ParameterizableViewController {

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

From source file org.openmrs.module.drugorderexport.web.controller.DrugOrderFormController.java

/**
 * This controller backs the /web/module/basicmoduleForm.jsp page. This controller is tied to that
 * jsp page in the /metadata/moduleApplicationContext.xml file
 */
public class DrugOrderFormController extends ParameterizableViewController {