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

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

      
    
Rootfs path

      
    
Size
1971 (1.9 KB)
MD5
a38c89ae463b67cb05030f08f5bb32f1
SHA1
3aa7b878c835320deaee5999d7e6a83dd451a88d
SHA256
4266ada4f86be931a9bdd381e878690e38f5c976c0d330a2defb892bb7ba228b
SHA512

      
    
SHA1_git
121e076a754d767c627a8954c99bb3f40ac371ad
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
SessionIdGenerator.java | 1.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; public interface SessionIdGenerator { /** * @return the node identifier associated with this node which will be included in the generated session ID. */ String getJvmRoute(); /** * Specify the node identifier associated with this node which will be included in the generated session ID. * * @param jvmRoute The node identifier */ void setJvmRoute(String jvmRoute); /** * @return the number of bytes for a session ID */ int getSessionIdLength(); /** * Specify the number of bytes for a session ID * * @param sessionIdLength Number of bytes */ void setSessionIdLength(int sessionIdLength); /** * Generate and return a new session identifier. * * @return the newly generated session id */ String generateSessionId(); /** * Generate and return a new session identifier. * * @param route node identifier to include in generated id * * @return the newly generated session id */ String generateSessionId(String route); }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
50.21
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