org.webframe.web.front.FrontModulePluginDriver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wf-web-front Show documentation
Show all versions of wf-web-front Show documentation
Java Web Frame: wf-web-front
/*
* wf-web-front
* Created on 2011-7-1-下午09:15:38
*/
package org.webframe.web.front;
import org.webframe.support.driver.AbstractModulePluginDriver;
import org.webframe.support.driver.ModulePluginManager;
/**
* @author 黄国庆
* @version $Id: codetemplates.xml,v 1.1 2009/09/07 08:48:12 Exp $ Create: 2011-7-1 下午09:15:38
*/
public class FrontModulePluginDriver extends AbstractModulePluginDriver {
static {
ModulePluginManager.registerDriver(new FrontModulePluginDriver());
}
/* (non-Javadoc)
* @see org.webframe.support.driver.ModulePluginDriver#getModuleName()
*/
@Override
public String getModuleName() {
return "FrontModule";
}
@Override
public String getWebSourcesLocation() {
return "/jsp";
}
@Override
public String getSpringContextLocation() {
return "/spring";
}
}