ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/catalina/storeconfig/WebResourceRootSF.java

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

      
    
Rootfs path

      
    
Size
3121 (3.0 KB)
MD5
773cb5d3addf2844a6c1124024f5e98d
SHA1
9bcc1ad39d4319d37a826f0e61161ea94ccd3b0f
SHA256
0600a0339af7e37ce3082b7b40638a5e8ba0238ba57a6b5947ed1b0c203f4944
SHA512

      
    
SHA1_git
3096b4131f2231fc2bee0f573593af198aeba18a
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
WebResourceRootSF.java | 3.0 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.storeconfig; import java.io.PrintWriter; import org.apache.catalina.WebResourceRoot; import org.apache.catalina.WebResourceSet; /** * Generate Resources element */ public class WebResourceRootSF extends StoreFactoryBase { /** * Store the specified Resources children. * <p> * {@inheritDoc} */ @Override public void storeChildren(PrintWriter aWriter, int indent, Object aResourceRoot, StoreDescription parentDesc) throws Exception { if (aResourceRoot instanceof WebResourceRoot resourceRoot) { // Store nested <PreResources> elements WebResourceSet[] preResourcesArray = resourceRoot.getPreResources(); StoreDescription preResourcesElementDesc = getRegistry().findDescription(WebResourceSet.class.getName() + ".[PreResources]"); if (preResourcesElementDesc != null) { for (WebResourceSet preResources : preResourcesArray) { preResourcesElementDesc.getStoreFactory().store(aWriter, indent, preResources); } } // Store nested <JarResources> elements WebResourceSet[] jarResourcesArray = resourceRoot.getJarResources(); StoreDescription jarResourcesElementDesc = getRegistry().findDescription(WebResourceSet.class.getName() + ".[JarResources]"); if (jarResourcesElementDesc != null) { for (WebResourceSet jarResources : jarResourcesArray) { jarResourcesElementDesc.getStoreFactory().store(aWriter, indent, jarResources); } } // Store nested <PostResources> elements WebResourceSet[] postResourcesArray = resourceRoot.getPostResources(); StoreDescription postResourcesElementDesc = getRegistry().findDescription(WebResourceSet.class.getName() + ".[PostResources]"); if (postResourcesElementDesc != null) { for (WebResourceSet postResources : postResourcesArray) { postResourcesElementDesc.getStoreFactory().store(aWriter, indent, postResources); } } } } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
46.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