Home
last modified time | relevance | path

Searched refs:WebAppContext (Results 1 – 18 of 18) sorted by relevance

/external/jetty/src/java/org/eclipse/jetty/webapp/
DConfiguration.java37 public void preConfigure (WebAppContext context) throws Exception; in preConfigure()
48 public void configure (WebAppContext context) throws Exception; in configure()
56 public void postConfigure (WebAppContext context) throws Exception; in postConfigure()
65 public void deconfigure (WebAppContext context) throws Exception; in deconfigure()
74 public void destroy (WebAppContext context) throws Exception; in destroy()
86 public void cloneConfigure (WebAppContext template, WebAppContext context) throws Exception; in cloneConfigure()
DAbstractConfiguration.java23 public void preConfigure(WebAppContext context) throws Exception in preConfigure()
27 public void configure(WebAppContext context) throws Exception in configure()
31 public void postConfigure(WebAppContext context) throws Exception in postConfigure()
35 public void deconfigure(WebAppContext context) throws Exception in deconfigure()
39 public void destroy(WebAppContext context) throws Exception in destroy()
43 public void cloneConfigure(WebAppContext template, WebAppContext context) throws Exception in cloneConfigure()
DCloneConfiguration.java23 final WebAppContext _template;
25 CloneConfiguration(WebAppContext template) in CloneConfiguration()
31 public void configure(WebAppContext context) throws Exception in configure()
39 public void deconfigure(WebAppContext context) throws Exception in deconfigure()
DIterativeDescriptorProcessor.java35 …public static final Class<?>[] __signature = new Class[]{WebAppContext.class, Descriptor.class, Xm…
37 public abstract void start(WebAppContext context, Descriptor descriptor); in start()
38 public abstract void end(WebAppContext context, Descriptor descriptor); in end()
56 public void process(WebAppContext context, Descriptor descriptor) in process()
79 protected void visit (WebAppContext context, Descriptor descriptor, XmlParser.Node node) in visit()
DMetaInfConfiguration.java51 public void preConfigure(final WebAppContext context) throws Exception in preConfigure()
88 public void configure(WebAppContext context) throws Exception in configure()
94 public void deconfigure(WebAppContext context) throws Exception in deconfigure()
100 public void postConfigure(WebAppContext context) throws Exception in postConfigure()
107 public void addResource (WebAppContext context, String attribute, Resource jar) in addResource()
121 protected void processEntry(WebAppContext context, URI jarUri, JarEntry entry) in processEntry()
DFragmentConfiguration.java38 public void preConfigure(WebAppContext context) throws Exception in preConfigure()
49 public void configure(WebAppContext context) throws Exception in configure()
59 public void postConfigure(WebAppContext context) throws Exception in postConfigure()
70 …public void findWebFragments (final WebAppContext context, final MetaData metaData) throws Excepti… in findWebFragments()
DTagLibConfiguration.java88 private WebAppContext _context;
90 public TagLibListener (WebAppContext context) { in TagLibListener()
450 … public void visitListener (WebAppContext context, Descriptor descriptor, XmlParser.Node node) in visitListener()
476 public void end(WebAppContext context, Descriptor descriptor) in end()
481 public void start(WebAppContext context, Descriptor descriptor) in start()
492 public void preConfigure(WebAppContext context) throws Exception in preConfigure()
510 public void configure (WebAppContext context) throws Exception in configure()
515 public void postConfigure(WebAppContext context) throws Exception in postConfigure()
521 public void cloneConfigure(WebAppContext template, WebAppContext context) throws Exception in cloneConfigure()
527 public void deconfigure(WebAppContext context) throws Exception in deconfigure()
DWebInfConfiguration.java60 public void preConfigure(final WebAppContext context) throws Exception in preConfigure()
145 public void configure(WebAppContext context) throws Exception in configure()
186 public void deconfigure(WebAppContext context) throws Exception in deconfigure()
199 context.setAttribute(WebAppContext.TEMPDIR, null); in deconfigure()
212 public void cloneConfigure(WebAppContext template, WebAppContext context) throws Exception in cloneConfigure()
261 public void resolveTempDirectory (WebAppContext context) in resolveTempDirectory()
274 File servletTmpDir = asFile(context.getAttribute(WebAppContext.TEMPDIR)); in resolveTempDirectory()
280 context.setAttribute(WebAppContext.TEMPDIR,tmpDir); in resolveTempDirectory()
296 File baseTemp = asFile(context.getAttribute(WebAppContext.BASETEMPDIR)); in resolveTempDirectory()
361 public void makeTempDirectory (File parent, WebAppContext context, boolean deleteExisting) in makeTempDirectory()
[all …]
DWebXmlConfiguration.java45 public void preConfigure (WebAppContext context) throws Exception in preConfigure()
85 public void configure (WebAppContext context) throws Exception in configure()
98 protected Resource findWebXml(WebAppContext context) throws IOException, MalformedURLException in findWebXml()
122 public void deconfigure (WebAppContext context) throws Exception in deconfigure()
DDiscoveredAnnotation.java37 protected WebAppContext _context;
44 public DiscoveredAnnotation (WebAppContext context, String className) in DiscoveredAnnotation()
50 public DiscoveredAnnotation(WebAppContext context, String className, Resource resource) in DiscoveredAnnotation()
DStandardDescriptorProcessor.java116 public void start(WebAppContext context, Descriptor descriptor) in start()
125 public void end(WebAppContext context, Descriptor descriptor) in end()
134 … public void visitContextParam (WebAppContext context, Descriptor descriptor, XmlParser.Node node) in visitContextParam()
183 … protected void visitDisplayName(WebAppContext context, Descriptor descriptor, XmlParser.Node node) in visitDisplayName()
199 protected void visitServlet(WebAppContext context, Descriptor descriptor, XmlParser.Node node) in visitServlet()
617 …protected void visitServletMapping(WebAppContext context, Descriptor descriptor, XmlParser.Node no… in visitServletMapping()
665 …protected void visitSessionConfig(WebAppContext context, Descriptor descriptor, XmlParser.Node nod… in visitSessionConfig()
985 … protected void visitMimeMapping(WebAppContext context, Descriptor descriptor, XmlParser.Node node) in visitMimeMapping()
1031 …protected void visitWelcomeFileList(WebAppContext context, Descriptor descriptor, XmlParser.Node n… in visitWelcomeFileList()
1079 …protected void visitLocaleEncodingList(WebAppContext context, Descriptor descriptor, XmlParser.Nod… in visitLocaleEncodingList()
[all …]
DWebAppContext.java85 public class WebAppContext extends ServletContextHandler implements WebAppClassLoader.Context class
87 private static final Logger LOG = Log.getLogger(WebAppContext.class);
180 public static WebAppContext getCurrentWebAppContext() in getCurrentWebAppContext()
186 if (handler instanceof WebAppContext) in getCurrentWebAppContext()
187 return (WebAppContext)handler; in getCurrentWebAppContext()
193 public WebAppContext() in WebAppContext() method in WebAppContext
206 public WebAppContext(String webApp,String contextPath) in WebAppContext() method in WebAppContext
222 public WebAppContext(HandlerContainer parent, String webApp, String contextPath) in WebAppContext() method in WebAppContext
241 …public WebAppContext(SessionHandler sessionHandler, SecurityHandler securityHandler, ServletHandle… in WebAppContext() method in WebAppContext
1325 Resource resource=WebAppContext.this.getResource(path); in getResource()
[all …]
DJettyWebXmlConfiguration.java58 public void configure (WebAppContext context) throws Exception in configure()
124 …private void setupXmlConfiguration(WebAppContext context, XmlConfiguration jetty_config, Resource … in setupXmlConfiguration()
DDescriptorProcessor.java28 public void process (WebAppContext context, Descriptor descriptor) throws Exception; in process()
DMetaData.java334 public void resolve (WebAppContext context) in resolve()
/external/jetty/src/resources/org/eclipse/jetty/webapp/jmx/
DWebAppContext-mbean.properties1 WebAppContext: Web Application ContextHandler key
/external/jetty/
DVERSION.txt373 + 389956 Bad __context set in WebAppContext.start sequence with respect to ENC
414 + 389956 Bad __context set in WebAppContext.start sequence with respect to ENC
1161 + JETTY-954 WebAppContext eats any start exceptions instead of stopping the
1196 + 341145 WebAppContext MBean attribute serverClasses returns empty value
1201 + 341394 Remove 'Unavailable' JMX attributes of WebAppContext MBean
1376 + JETTY-1288 info when atypical classloader set to WebAppContext
1399 + JETTY-1288 Info statement when atypical classloader set on WebAppContext
1434 + 324812 restore WebAppContext constructor used by geronimo integration
1635 + 310051 _configurationClasses now defaults to null in WebAppContext
2072 + added WebAppContext.setConfigurationDiscovered for servlet 3.0 features
[all …]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.mortbay.jetty.server_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...