📄 remoteauthenticationmanager.java
字号:
/* Copyright 2004, 2005, 2006 Acegi Technology Pty Limited * * 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.acegisecurity.providers.rcp;import org.acegisecurity.GrantedAuthority;/** * Allows remote clients to attempt authentication. * * @author Ben Alex * @version $Id: RemoteAuthenticationManager.java 1784 2007-02-24 21:00:24Z luke_t $ */public interface RemoteAuthenticationManager { //~ Methods ======================================================================================================== /** * Attempts to authenticate the remote client using the presented username and password. If authentication * is successful, an array of <code>GrantedAuthority[]</code> objects will be returned.<p>In order to * maximise remoting protocol compatibility, a design decision was taken to operate with minimal arguments and * return only the minimal amount of information required for remote clients to enable/disable relevant user * interface commands etc. There is nothing preventing users from implementing their own equivalent package that * works with more complex object types.</p> * * @param username the username the remote client wishes to authenticate with. * @param password the password the remote client wishes to authenticate with. * * @return all of the granted authorities the specified username and password have access to. * * @throws RemoteAuthenticationException if the authentication failed. */ GrantedAuthority[] attemptAuthentication(String username, String password) throws RemoteAuthenticationException;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -