📄 securityrealm.java
字号:
package net.sourceforge.pebble.security;
import java.util.Collection;
/**
* Represents a security realm with some basic operations.
*
* @author Simon Brown
*/
public interface SecurityRealm {
/**
* Looks up and returns a collection of all users.
*
* @return a Collection of PebbleUserDetails objects
*/
public Collection<PebbleUserDetails> getUsers() throws SecurityRealmException;
/**
* Looks up and returns user details for the given username.
*
* @param username the username to find details for
* @return a PebbleUserDetails instance
*/
public PebbleUserDetails getUser(String username) throws SecurityRealmException;
/**
* Creates a new user.
*
* @param pud a PebbleUserDetails instance
*/
public void createUser(PebbleUserDetails pud) throws SecurityRealmException;
/**
* Updates user details, except for the password
*
* @param pud a PebbleUserDetails instance
*/
public void updateUser(PebbleUserDetails pud) throws SecurityRealmException;
/**
* Changes a user's password.
*
* @param username the username of the user
* @param password the new password
* @throws SecurityRealmException
*/
public void changePassword(String username, String password) throws SecurityRealmException;
/**
* Removes user details for the given username.
*
* @param username the username of the user to remove
*/
public void removeUser(String username) throws SecurityRealmException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -