📄 usermapeditor.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.userdetails.memory;import org.acegisecurity.userdetails.User;import org.acegisecurity.userdetails.UserDetails;import org.springframework.beans.propertyeditors.PropertiesEditor;import java.beans.PropertyEditorSupport;import java.util.Iterator;import java.util.Properties;/** * Property editor to assist with the setup of a {@link UserMap}.<p>The format of entries should be:</p> * <p><code> username=password,grantedAuthority[,grantedAuthority][,enabled|disabled] </code></p> * <p>The <code>password</code> must always be the first entry after the equals. The <code>enabled</code> or * <code>disabled</code> keyword can appear anywhere (apart from the first entry reserved for the password). If * neither <code>enabled</code> or <code>disabled</code> appear, the default is <code>enabled</code>. At least one * granted authority must be listed.</p> * <p>The <code>username</code> represents the key and duplicates are handled the same was as duplicates would be * in Java <code>Properties</code> files.</p> * <p>If the above requirements are not met, the invalid entry will be silently ignored.</p> * <p>This editor always assumes each entry has a non-expired account and non-expired credentials. However, it * does honour the user enabled/disabled flag as described above.</p> * * @author Ben Alex * @version $Id: UserMapEditor.java 1496 2006-05-23 13:38:33Z benalex $ */public class UserMapEditor extends PropertyEditorSupport { //~ Methods ======================================================================================================== public static UserMap addUsersFromProperties(UserMap userMap, Properties props) { // Now we have properties, process each one individually UserAttributeEditor configAttribEd = new UserAttributeEditor(); for (Iterator iter = props.keySet().iterator(); iter.hasNext();) { String username = (String) iter.next(); String value = props.getProperty(username); // Convert value to a password, enabled setting, and list of granted authorities configAttribEd.setAsText(value); UserAttribute attr = (UserAttribute) configAttribEd.getValue(); // Make a user object, assuming the properties were properly provided if (attr != null) { UserDetails user = new User(username, attr.getPassword(), attr.isEnabled(), true, true, true, attr.getAuthorities()); userMap.addUser(user); } } return userMap; } public void setAsText(String s) throws IllegalArgumentException { UserMap userMap = new UserMap(); if ((s == null) || "".equals(s)) { // Leave value in property editor null } else { // Use properties editor to tokenize the string PropertiesEditor propertiesEditor = new PropertiesEditor(); propertiesEditor.setAsText(s); Properties props = (Properties) propertiesEditor.getValue(); addUsersFromProperties(userMap, props); } setValue(userMap); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -