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

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

      
    
Rootfs path

      
    
Size
3098 (3.0 KB)
MD5
a0106d0a9c49e9d6b48d2e0c58707b8c
SHA1
2e0ca76bfcbb233963109260ccb00bc378340335
SHA256
6267de6015cfc96e3946ad0cff51d38c9806046df591147952ca6fb7f09310a6
SHA512

      
    
SHA1_git
6f3f55ea84816ead827ae27cc7c90142cfb664d3
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
StandardSessionFacade.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.session; import java.util.Enumeration; import jakarta.servlet.ServletContext; import jakarta.servlet.http.HttpSession; /** * Facade for the StandardSession object. */ public class StandardSessionFacade implements HttpSession { // ----------------------------------------------------------- Constructors /** * Construct a new session facade. * * @param session The session instance to wrap */ public StandardSessionFacade(HttpSession session) { this.session = session; } // ----------------------------------------------------- Instance Variables /** * Wrapped session object. */ private final HttpSession session; // ---------------------------------------------------- HttpSession Methods @Override public long getCreationTime() { return session.getCreationTime(); } @Override public String getId() { return session.getId(); } @Override public long getLastAccessedTime() { return session.getLastAccessedTime(); } @Override public ServletContext getServletContext() { return session.getServletContext(); } @Override public void setMaxInactiveInterval(int interval) { session.setMaxInactiveInterval(interval); } @Override public int getMaxInactiveInterval() { return session.getMaxInactiveInterval(); } @Override public Object getAttribute(String name) { return session.getAttribute(name); } @Override public Enumeration<String> getAttributeNames() { return session.getAttributeNames(); } @Override public void setAttribute(String name, Object value) { session.setAttribute(name, value); } @Override public void removeAttribute(String name) { session.removeAttribute(name); } @Override public void invalidate() { session.invalidate(); } @Override public boolean isNew() { return session.isNew(); } @Override public Accessor getAccessor() { return session.getAccessor(); } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
42.65
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