Package org.eclipse.jetty.ant
Class AntWebXmlConfiguration
- java.lang.Object
-
- org.eclipse.jetty.webapp.AbstractConfiguration
-
- org.eclipse.jetty.webapp.WebXmlConfiguration
-
- org.eclipse.jetty.ant.AntWebXmlConfiguration
-
- All Implemented Interfaces:
Configuration
public class AntWebXmlConfiguration extends WebXmlConfiguration
This configuration object provides additional way to inject application properties into the configured web application. The list of classpath files, the application base directory and web.xml file could be specified in this way.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.webapp.Configuration
Configuration.ClassList, Configuration.Wrapper, Configuration.WrapperFunction
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.List
classPathFiles
List of classpath files.private static Logger
LOG
private java.io.File
webAppBaseDir
Web application root directory.-
Fields inherited from interface org.eclipse.jetty.webapp.Configuration
ATTR
-
-
Constructor Summary
Constructors Constructor Description AntWebXmlConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
setClassPathFiles(java.util.List classPathFiles)
void
setWebAppBaseDir(java.io.File webAppBaseDir)
-
Methods inherited from class org.eclipse.jetty.webapp.WebXmlConfiguration
configure, deconfigure, findWebXml, preConfigure
-
Methods inherited from class org.eclipse.jetty.webapp.AbstractConfiguration
cloneConfigure, destroy, postConfigure
-
-
-
-
Field Detail
-
LOG
private static final Logger LOG
-
classPathFiles
private java.util.List classPathFiles
List of classpath files.
-
webAppBaseDir
private java.io.File webAppBaseDir
Web application root directory.
-
-