org.pentaho.platform.plugin.services.security.userrole.memory
Class UserMapFactoryBean

java.lang.Object
  extended by org.pentaho.platform.plugin.services.security.userrole.memory.UserMapFactoryBean

public class UserMapFactoryBean
extends Object

Takes as input the string that defines a UserMap. When Spring instantiates this bean, it outputs a UserMap.

This class allows a string that defines a UserMap to be defined once in Spring beans XML, then used by multiple client beans that need access to user to role mappings.

This class is necessary since UserMap does not define a constructor or setter necessary to populate a UserMap bean, nor does it provide any way to extract its mappings once created.

Example usage:

     <bean id="userMap" class="java.lang.String">
       <constructor-arg type="java.lang.String">
         <value>
           <![CDATA[
           joe=password,Admin,ceo,Authenticated
           ...
           ]]>
         </value>
       </constructor-arg>
     </bean>

     <bean id="userMapFactoryBean"
       class="org.pentaho.security.UserMapFactoryBean">
       <property name="userMap" ref="userMap" />
     </bean>

     <bean id="memoryAuthenticationDao"
       class="org.acegisecurity.userdetails.memory.InMemoryDaoImpl">
       <property name="userMap" ref="userMapFactoryBean" />
     </bean>
 

Author:
mlowery
See Also:
UserRoleListEnhancedUserMapFactoryBean

Constructor Summary
UserMapFactoryBean()
           
 
Method Summary
 Object getObject()
           
 Class getObjectType()
           
 boolean isSingleton()
           
 void setUserMap(String userMap)
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

UserMapFactoryBean

public UserMapFactoryBean()
Method Detail

getObject

public Object getObject()
                 throws Exception
Throws:
Exception

getObjectType

public Class getObjectType()

isSingleton

public boolean isSingleton()

setUserMap

public void setUserMap(String userMap)