/* * 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;
publicclass Constants { // Authentication methods for login configuration // Servlet spec schemes are defined in HttpServletRequest // Vendor specific schemes publicstaticfinal String SPNEGO_METHOD = "SPNEGO";
// Form based authentication constants publicstaticfinal String FORM_ACTION = "/j_security_check"; publicstaticfinal String FORM_PASSWORD = "j_password"; publicstaticfinal String FORM_USERNAME = "j_username";
/** * The notes key to track the single-sign-on identity with which this request is associated.
*/ publicstaticfinal String REQ_SSOID_NOTE = "org.apache.catalina.request.SSOID";
/** * The session id used as a CSRF marker when redirecting a user's request.
*/ publicstaticfinal 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>.
*/ publicstaticfinal 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 * user name used to authenticate this user will be cached under this key to avoid the need for repeated calls to * <code>Realm.authenticate()</code>.
*/ publicstaticfinal 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.
*/ publicstaticfinal String FORM_REQUEST_NOTE = "org.apache.catalina.authenticator.REQUEST";
}
¤ Dauer der Verarbeitung: 0.1 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.