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

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

      
    
Rootfs path

      
    
Size
1795 (1.8 KB)
MD5
b1ed19eef12bc257a1f53f33cc083882
SHA1
039493a78f221fc3bfe793883b5dfffa219a55ae
SHA256
9bddfe0369fc0f49dc4fe70b4e121de979ee15b399d746883acdd513efe543a1
SHA512

      
    
SHA1_git
0e7ee43a8181dc85ed964270e5cc29fae0f16e81
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
AddPortOffsetRule.java | 1.8 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.catalina.Server; import org.apache.catalina.connector.Connector; import org.apache.tomcat.util.digester.Rule; import org.xml.sax.Attributes; public class AddPortOffsetRule extends Rule { // Set portOffset on all the connectors based on portOffset in the Server @Override public void begin(String namespace, String name, Attributes attributes) throws Exception { Connector conn = (Connector) digester.peek(); Server server = (Server) digester.peek(2); int portOffset = server.getPortOffset(); conn.setPortOffset(portOffset); StringBuilder code = digester.getGeneratedCode(); if (code != null) { code.append(digester.toVariableName(conn)).append(".setPortOffset("); code.append(digester.toVariableName(server)).append(".getPortOffset());"); code.append(System.lineSeparator()); } } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
54.59
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