ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/catalina/startup/ContextRuleSet.java

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/catalina/startup/ContextRuleSet.java
Status
scanned
Type
file
Name
ContextRuleSet.java
Extension
.java
Programming language
Java
Mime type
text/plain
File type
ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
9542 (9.3 KB)
MD5
e13128b0525b4596cbd033d0d7ca89c6
SHA1
8df9421ce583ce5ef67a939aa3b293c2efb23fac
SHA256
ad9cbd22cba15b408821c533de2f9329e396f1aa9a59a7290850a4f03e61175d
SHA512

      
    
SHA1_git
9fd0548138fe660b13a630d4eed81056ee3841e7
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
ContextRuleSet.java | 9.3 KB |

/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.catalina.startup; import org.apache.tomcat.util.digester.Digester; import org.apache.tomcat.util.digester.RuleSet; /** * <strong>RuleSet</strong> for processing the contents of a Context definition element. */ public class ContextRuleSet implements RuleSet { // ----------------------------------------------------- Instance Variables /** * The matching pattern prefix to use for recognizing our elements. */ protected final String prefix; /** * Should the context be created. */ protected final boolean create; // ------------------------------------------------------------ Constructor /** * Construct an instance of this <code>RuleSet</code> with the default matching pattern prefix. */ public ContextRuleSet() { this(""); } /** * Construct an instance of this <code>RuleSet</code> with the specified matching pattern prefix. * * @param prefix Prefix for matching pattern rules (including the trailing slash character) */ public ContextRuleSet(String prefix) { this(prefix, true); } /** * Construct an instance of this <code>RuleSet</code> with the specified matching pattern prefix. * * @param prefix Prefix for matching pattern rules (including the trailing slash character) * @param create <code>true</code> if the main context instance should be created */ public ContextRuleSet(String prefix, boolean create) { this.prefix = prefix; this.create = create; } // --------------------------------------------------------- Public Methods @Override public void addRuleInstances(Digester digester) { if (create) { digester.addObjectCreate(prefix + "Context", "org.apache.catalina.core.StandardContext", "className"); digester.addSetProperties(prefix + "Context"); } else { digester.addSetProperties(prefix + "Context", new String[] { "path", "docBase" }); } if (create) { digester.addRule(prefix + "Context", new LifecycleListenerRule("org.apache.catalina.startup.ContextConfig", "configClass")); digester.addSetNext(prefix + "Context", "addChild", "org.apache.catalina.Container"); } digester.addObjectCreate(prefix + "Context/Listener", null, // MUST be specified in the element "className"); digester.addSetProperties(prefix + "Context/Listener"); digester.addSetNext(prefix + "Context/Listener", "addLifecycleListener", "org.apache.catalina.LifecycleListener"); digester.addObjectCreate(prefix + "Context/Loader", "org.apache.catalina.loader.WebappLoader", "className"); digester.addSetProperties(prefix + "Context/Loader"); digester.addSetNext(prefix + "Context/Loader", "setLoader", "org.apache.catalina.Loader"); digester.addObjectCreate(prefix + "Context/Manager", "org.apache.catalina.session.StandardManager", "className"); digester.addSetProperties(prefix + "Context/Manager"); digester.addSetNext(prefix + "Context/Manager", "setManager", "org.apache.catalina.Manager"); digester.addObjectCreate(prefix + "Context/Manager/Store", null, // MUST be specified in the element "className"); digester.addSetProperties(prefix + "Context/Manager/Store"); digester.addSetNext(prefix + "Context/Manager/Store", "setStore", "org.apache.catalina.Store"); digester.addObjectCreate(prefix + "Context/Manager/SessionIdGenerator", "org.apache.catalina.util.StandardSessionIdGenerator", "className"); digester.addSetProperties(prefix + "Context/Manager/SessionIdGenerator"); digester.addSetNext(prefix + "Context/Manager/SessionIdGenerator", "setSessionIdGenerator", "org.apache.catalina.SessionIdGenerator"); digester.addObjectCreate(prefix + "Context/Parameter", "org.apache.tomcat.util.descriptor.web.ApplicationParameter"); digester.addSetProperties(prefix + "Context/Parameter"); digester.addSetNext(prefix + "Context/Parameter", "addApplicationParameter", "org.apache.tomcat.util.descriptor.web.ApplicationParameter"); digester.addRuleSet(new RealmRuleSet(prefix + "Context/")); digester.addObjectCreate(prefix + "Context/Resources", "org.apache.catalina.webresources.StandardRoot", "className"); digester.addSetProperties(prefix + "Context/Resources"); digester.addSetNext(prefix + "Context/Resources", "setResources", "org.apache.catalina.WebResourceRoot"); digester.addObjectCreate(prefix + "Context/Resources/CacheStrategy", null, // MUST be specified in the element "className"); digester.addSetProperties(prefix + "Context/Resources/CacheStrategy"); digester.addSetNext(prefix + "Context/Resources/CacheStrategy", "setCacheStrategy", "org.apache.catalina.WebResourceRoot$CacheStrategy"); digester.addObjectCreate(prefix + "Context/Resources/PreResources", null, // MUST be specified in the element "className"); digester.addSetProperties(prefix + "Context/Resources/PreResources"); digester.addSetNext(prefix + "Context/Resources/PreResources", "addPreResources", "org.apache.catalina.WebResourceSet"); digester.addObjectCreate(prefix + "Context/Resources/JarResources", null, // MUST be specified in the element "className"); digester.addSetProperties(prefix + "Context/Resources/JarResources"); digester.addSetNext(prefix + "Context/Resources/JarResources", "addJarResources", "org.apache.catalina.WebResourceSet"); digester.addObjectCreate(prefix + "Context/Resources/PostResources", null, // MUST be specified in the element "className"); digester.addSetProperties(prefix + "Context/Resources/PostResources"); digester.addSetNext(prefix + "Context/Resources/PostResources", "addPostResources", "org.apache.catalina.WebResourceSet"); digester.addObjectCreate(prefix + "Context/ResourceLink", "org.apache.tomcat.util.descriptor.web.ContextResourceLink"); digester.addSetProperties(prefix + "Context/ResourceLink"); digester.addRule(prefix + "Context/ResourceLink", new SetNextNamingRule("addResourceLink", "org.apache.tomcat.util.descriptor.web.ContextResourceLink")); digester.addObjectCreate(prefix + "Context/Valve", null, // MUST be specified in the element "className"); digester.addSetProperties(prefix + "Context/Valve"); digester.addCallMethod(prefix + "Context/Valve/init-param", "addInitParam", 2); digester.addCallParam(prefix + "Context/Valve/init-param/param-name", 0); digester.addCallParam(prefix + "Context/Valve/init-param/param-value", 1); digester.addSetNext(prefix + "Context/Valve", "addValve", "org.apache.catalina.Valve"); digester.addCallMethod(prefix + "Context/WatchedResource", "addWatchedResource", 0); digester.addCallMethod(prefix + "Context/WrapperLifecycle", "addWrapperLifecycle", 0); digester.addCallMethod(prefix + "Context/WrapperListener", "addWrapperListener", 0); digester.addObjectCreate(prefix + "Context/JarScanner", "org.apache.tomcat.util.scan.StandardJarScanner", "className"); digester.addSetProperties(prefix + "Context/JarScanner"); digester.addSetNext(prefix + "Context/JarScanner", "setJarScanner", "org.apache.tomcat.JarScanner"); digester.addObjectCreate(prefix + "Context/JarScanner/JarScanFilter", "org.apache.tomcat.util.scan.StandardJarScanFilter", "className"); digester.addSetProperties(prefix + "Context/JarScanner/JarScanFilter"); digester.addSetNext(prefix + "Context/JarScanner/JarScanFilter", "setJarScanFilter", "org.apache.tomcat.JarScanFilter"); digester.addObjectCreate(prefix + "Context/CookieProcessor", "org.apache.tomcat.util.http.Rfc6265CookieProcessor", "className"); digester.addSetProperties(prefix + "Context/CookieProcessor"); digester.addSetNext(prefix + "Context/CookieProcessor", "setCookieProcessor", "org.apache.tomcat.util.http.CookieProcessor"); } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
13.85
Copyrights

      
    
Holders

      
    
Authors

      
    
License detections License expression License expression SPDX
apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de apache-2.0 Apache-2.0
URL Start line End line
http://www.apache.org/licenses/LICENSE-2.0 9 9