jadex.web.tools.jadexdoc.JaxcentFixServlet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-applications-web Show documentation
Show all versions of jadex-applications-web Show documentation
Jadex examples that can be deployed as web application.
package jadex.web.tools.jadexdoc;
/**
* Fixes the jaxcent servlet to allow for context-relative
* config file names
*/
public class JaxcentFixServlet //extends JaxcentServlet
{
// public String getConfigItem(String name)
// {
// String val = super.getConfigItem(name);
// if(name.equals("JaxcentConfigXML"))
// {
// val = getServletContext().getRealPath(val);
// }
// return val;
// }
}