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

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

      
    
Rootfs path

      
    
Size
3962 (3.9 KB)
MD5
eabb9e951e5cfdf88bbf068399d12f3d
SHA1
f2808e612efaca1577ad179868f19fd9df0865a7
SHA256
7f2c9687b4c57d65caf81ce3c38b5d33d5c311315b3760a50720da726193a2de
SHA512

      
    
SHA1_git
f5acc52dbdc1d1ed0da9d3b26f2b08268c9d2828
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
EngineRuleSet.java | 3.9 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 an Engine definition element. This <code>RuleSet</code> does * NOT include any rules for nested Host elements, which should be added via instances of <code>HostRuleSet</code>. */ public class EngineRuleSet implements RuleSet { // ----------------------------------------------------- Instance Variables /** * The matching pattern prefix to use for recognizing our elements. */ protected final String prefix; // ------------------------------------------------------------ Constructor /** * Construct an instance of this <code>RuleSet</code> with the default matching pattern prefix. */ public EngineRuleSet() { 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 EngineRuleSet(String prefix) { this.prefix = prefix; } // --------------------------------------------------------- Public Methods @Override public void addRuleInstances(Digester digester) { digester.addObjectCreate(prefix + "Engine", "org.apache.catalina.core.StandardEngine", "className"); digester.addSetProperties(prefix + "Engine"); digester.addRule(prefix + "Engine", new LifecycleListenerRule("org.apache.catalina.startup.EngineConfig", "engineConfigClass")); digester.addSetNext(prefix + "Engine", "setContainer", "org.apache.catalina.Engine"); // Cluster configuration start digester.addObjectCreate(prefix + "Engine/Cluster", null, // MUST be specified in the element "className"); digester.addSetProperties(prefix + "Engine/Cluster"); digester.addSetNext(prefix + "Engine/Cluster", "setCluster", "org.apache.catalina.Cluster"); // Cluster configuration end digester.addObjectCreate(prefix + "Engine/Listener", null, // MUST be specified in the element "className"); digester.addSetProperties(prefix + "Engine/Listener"); digester.addSetNext(prefix + "Engine/Listener", "addLifecycleListener", "org.apache.catalina.LifecycleListener"); digester.addRuleSet(new RealmRuleSet(prefix + "Engine/")); digester.addObjectCreate(prefix + "Engine/Valve", null, // MUST be specified in the element "className"); digester.addSetProperties(prefix + "Engine/Valve"); digester.addCallMethod(prefix + "Engine/Valve/init-param", "addInitParam", 2); digester.addCallParam(prefix + "Engine/Valve/init-param/param-name", 0); digester.addCallParam(prefix + "Engine/Valve/init-param/param-value", 1); digester.addSetNext(prefix + "Engine/Valve", "addValve", "org.apache.catalina.Valve"); } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
28.88
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