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

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

      
    
Rootfs path

      
    
Size
4195 (4.1 KB)
MD5
8dd5c1d22b5e55e16ca8a31dda49669a
SHA1
77114d8b469d30d44ea3d93bee886826817201af
SHA256
d50169dfcbc21feed21b236a18861da4f335a1418f739fa76298720906c70dc2
SHA512

      
    
SHA1_git
44295da763a9c451f70f66117ff2780b9380c648
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
Constants.java | 4.1 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.authenticator; public class Constants { // Authentication methods for login configuration // Servlet spec schemes are defined in HttpServletRequest // Vendor specific schemes public static final String SPNEGO_METHOD = "SPNEGO"; // Form based authentication constants public static final String FORM_ACTION = "/j_security_check"; public static final String FORM_PASSWORD = "j_password"; public static final String FORM_USERNAME = "j_username"; // SPNEGO authentication constants public static final String KRB5_CONF_PROPERTY = "java.security.krb5.conf"; public static final String DEFAULT_KRB5_CONF = "conf/krb5.ini"; public static final String JAAS_CONF_PROPERTY = "java.security.auth.login.config"; public static final String DEFAULT_JAAS_CONF = "conf/jaas.conf"; public static final String DEFAULT_LOGIN_MODULE_NAME = "com.sun.security.jgss.krb5.accept"; // Cookie name for single sign on support public static final String SINGLE_SIGN_ON_COOKIE = "JSESSIONIDSSO"; /** * The name of the attribute used to indicate a partitioned cookie as part of * <a href="https://developers.google.com/privacy-sandbox/3pcd#partitioned">CHIPS</a>. This cookie attribute is not * defined by an RFC and may change in a non-backwards compatible way once equivalent functionality is included in * an RFC. */ public static final String COOKIE_PARTITIONED_ATTR = org.apache.tomcat.util.descriptor.web.Constants.COOKIE_PARTITIONED_ATTR; // --------------------------------------------------------- Request Notes /** * The notes key to track the single-sign-on identity with which this request is associated. */ public static final String REQ_SSOID_NOTE = "org.apache.catalina.request.SSOID"; public static final String REQ_JASPIC_SUBJECT_NOTE = "org.apache.catalina.authenticator.jaspic.SUBJECT"; // ---------------------------------------------------------- Session Notes /** * The session id used as a CSRF marker when redirecting a user's request. */ public static final String SESSION_ID_NOTE = "org.apache.catalina.authenticator.SESSION_ID"; /** * If the <code>cache</code> property of the authenticator is set, and the current request is part of a session, the * password used to authenticate this user will be cached under this key to avoid the need for repeated calls to * <code>Realm.authenticate()</code>. */ public static final String SESS_PASSWORD_NOTE = "org.apache.catalina.session.PASSWORD"; /** * If the <code>cache</code> property of the authenticator is set, and the current request is part of a session, the * username used to authenticate this user will be cached under this key to avoid the need for repeated calls to * <code>Realm.authenticate()</code>. */ public static final String SESS_USERNAME_NOTE = "org.apache.catalina.session.USERNAME"; /** * The original request information, to which the user will be redirected if authentication succeeds, is cached in * the notes under this key during the authentication process. */ public static final String FORM_REQUEST_NOTE = "org.apache.catalina.authenticator.REQUEST"; }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
22.12
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
https://developers.google.com/privacy-sandbox/3pcd#partitioned 42 42