ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/catalina/tribes/ManagedChannel.java

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

      
    
Rootfs path

      
    
Size
2430 (2.4 KB)
MD5
f305169fe6187eaf0533c32d864f4128
SHA1
6bad0a7396a8dad8f33a2307f6a63d39615b62a7
SHA256
e49de4110b424530f582b76752a7a737c0d732872a9075b3d7048762f22a4d9b
SHA512

      
    
SHA1_git
4bc1c9247c46503e779fa67fb00fcea48513e322
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
ManagedChannel.java | 2.4 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.tribes; import java.util.Iterator; /** * A managed channel interface gives you access to the components of the channels such as senders, receivers, * interceptors etc for configurations purposes */ public interface ManagedChannel extends Channel { /** * Sets the channel sender * * @param sender ChannelSender * * @see ChannelSender */ void setChannelSender(ChannelSender sender); /** * Sets the channel receiver * * @param receiver ChannelReceiver * * @see ChannelReceiver */ void setChannelReceiver(ChannelReceiver receiver); /** * Sets the membership service * * @param service MembershipService * * @see MembershipService */ void setMembershipService(MembershipService service); /** * returns the channel sender * * @return ChannelSender * * @see ChannelSender */ ChannelSender getChannelSender(); /** * returns the channel receiver * * @return ChannelReceiver * * @see ChannelReceiver */ ChannelReceiver getChannelReceiver(); /** * Returns the membership service * * @return MembershipService * * @see MembershipService */ MembershipService getMembershipService(); /** * Returns the interceptor stack * * @return Iterator * * @see Channel#addInterceptor(ChannelInterceptor) */ Iterator<ChannelInterceptor> getInterceptors(); }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
50.42
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