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

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

      
    
Rootfs path

      
    
Size
2792 (2.7 KB)
MD5
a9ad5557864897a89f311355d1a924ae
SHA1
b5f9e11b88ba195a9e4ae61e5a9f07367a639f37
SHA256
38f682461d0f3f2bd81bda3c3b9b9664d032129da95301ee021b5e564e406ffa
SHA512

      
    
SHA1_git
b8edc5229c33b0669856c8f0640f7d9519ee4135
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
ChannelSF.java | 2.7 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 java.util.Iterator; import org.apache.catalina.tribes.Channel; import org.apache.catalina.tribes.ChannelInterceptor; import org.apache.catalina.tribes.ChannelReceiver; import org.apache.catalina.tribes.ChannelSender; import org.apache.catalina.tribes.ManagedChannel; import org.apache.catalina.tribes.MembershipService; /** * Generate Channel Element */ public class ChannelSF extends StoreFactoryBase { /** * Store the specified Channel children. * <p> * {@inheritDoc} */ @Override public void storeChildren(PrintWriter aWriter, int indent, Object aChannel, StoreDescription parentDesc) throws Exception { if (aChannel instanceof Channel channel) { if (channel instanceof ManagedChannel managedChannel) { // Store nested <Membership> element MembershipService service = managedChannel.getMembershipService(); if (service != null) { storeElement(aWriter, indent, service); } // Store nested <Sender> element ChannelSender sender = managedChannel.getChannelSender(); if (sender != null) { storeElement(aWriter, indent, sender); } // Store nested <Receiver> element ChannelReceiver receiver = managedChannel.getChannelReceiver(); if (receiver != null) { storeElement(aWriter, indent, receiver); } Iterator<ChannelInterceptor> interceptors = managedChannel.getInterceptors(); while (interceptors.hasNext()) { ChannelInterceptor interceptor = interceptors.next(); storeElement(aWriter, indent, interceptor); } } } } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
44.74
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