📄 ssorealm.java
字号:
// ========================================================================// Copyright 2000-2005 Mort Bay Consulting Pty. Ltd.// ------------------------------------------------------------------------// Licensed 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.mortbay.jetty.security;import java.security.Principal;import org.mortbay.jetty.Request;import org.mortbay.jetty.Response;/* ------------------------------------------------------------ *//** Single Sign On Realm. * This interface is a mix-in interface for the UserRealm interface. If an * implementation of UserRealm also implements SSORealm, then single signon * is supported for that realm. * @see UserRealm * @author Greg Wilkins (gregw) */public interface SSORealm{ /** Get SSO credentials. * This call is used by an authenticator to check if a SSO exists for a request. * If SSO authentiation is successful, the requests UserPrincipal and * AuthUser fields are set. If available, the credential used to * authenticate the user is returned. If recoverable credentials are not required then * null may be return. * @param request The request to SSO. * @param response The response to SSO. * @return A credential if available for SSO authenticated requests. */ public Credential getSingleSignOn(Request request,Response response); /** Set SSO principal and credential. * This call is used by an authenticator to inform the SSO mechanism that * a user has signed on. The SSO mechanism should record the principal * and credential and update the response with any cookies etc. required. * @param request The authenticated request. * @param response The authenticated response/ * @param principal The principal that has been authenticated. * @param credential The credentials used to authenticate. */ public void setSingleSignOn(Request request, Response response, Principal principal, Credential credential); /** Clear SSO for user. * @param username The user to clear. */ public void clearSingleSignOn(String username);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -