All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.acegisecurity.intercept.method.MethodDefinitionSourceEditor Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
/* Copyright 2004 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.intercept.method;

import org.acegisecurity.ConfigAttributeDefinition;
import org.acegisecurity.ConfigAttributeEditor;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

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
 * MethodDefinitionSource}.
 * 
 * 

* The class creates and populates a {@link MethodDefinitionMap}. *

* * @author Ben Alex * @version $Id: MethodDefinitionSourceEditor.java,v 1.2 2005/11/17 00:56:09 benalex Exp $ */ public class MethodDefinitionSourceEditor extends PropertyEditorSupport { //~ Static fields/initializers ============================================= private static final Log logger = LogFactory.getLog(MethodDefinitionSourceEditor.class); //~ Methods ================================================================ public void setAsText(String s) throws IllegalArgumentException { MethodDefinitionMap source = new MethodDefinitionMap(); 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(); // Now we have properties, process each one individually ConfigAttributeEditor configAttribEd = new ConfigAttributeEditor(); for (Iterator iter = props.keySet().iterator(); iter.hasNext();) { String name = (String) iter.next(); String value = props.getProperty(name); // Convert value to series of security configuration attributes configAttribEd.setAsText(value); ConfigAttributeDefinition attr = (ConfigAttributeDefinition) configAttribEd .getValue(); // Register name and attribute source.addSecureMethod(name, attr); } } setValue(source); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy