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

io.spotnext.spring.web.controller.AbstractData Maven / Gradle / Ivy

There is a newer version: 1.0.21-BETA-20190513
Show newest version
package io.spotnext.spring.web.controller;

import java.io.Serializable;
import org.springframework.ui.ModelMap;
import org.springframework.web.servlet.ModelAndView;

/**
 * 

Abstract AbstractData class.

* * @author mojo2012 * @version 1.0 * @since 1.0 */ public abstract class AbstractData extends ModelAndView implements Serializable { private static final long serialVersionUID = 1L; protected ModelMap model = null; /** {@inheritDoc} */ @Override public ModelMap getModelMap() { if (this.model == null) { this.model = new DataContext(this); } return this.model; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy