Class UserRoleListEnhancedUserMapFactoryBean

  • All Implemented Interfaces:
    org.springframework.beans.factory.FactoryBean

    public class UserRoleListEnhancedUserMapFactoryBean
    extends Object
    implements org.springframework.beans.factory.FactoryBean
    Takes as input the string that defines a UserMap. When Spring instantiates this bean, it outputs a UserRoleListEnhancedUserMap.

    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[
                        admin=password,Admin,ceo,Authenticated
                        ...
                        ]]>
                      </value>
                    </constructor-arg>
                  </bean>
     
                 <bean id="userRoleListEnhancedUserMapFactoryBean"
                   class="org.pentaho.security.UserRoleListEnhancedUserMapFactoryBean">
                   <property name="userMap" ref="userMap" />
                 </bean>
     
                  <bean id="inMemoryUserRoleListService"
                    class="org.pentaho.security.InMemoryDaoUserDetailsRoleListImpl">
                    <property name="userRoleListEnhancedUserMap"
                      ref="userRoleListEnhancedUserMapFactoryBean" />
                    <property name="allAuthorities">
                      <list>
                        <bean class="org.springframework.security.GrantedAuthorityImpl">
                          <constructor-arg value="Authenticated" />
                          ...
                        </bean>
                      </list>
                    </property>
                  </bean>
     
    Author:
    mlowery
    See Also:
    UserMapFactoryBean
    • Constructor Detail

      • UserRoleListEnhancedUserMapFactoryBean

        public UserRoleListEnhancedUserMapFactoryBean()
    • Method Detail

      • getObject

        public Object getObject()
                         throws Exception
        Specified by:
        getObject in interface org.springframework.beans.factory.FactoryBean
        Throws:
        Exception
      • getObjectType

        public Class getObjectType()
        Specified by:
        getObjectType in interface org.springframework.beans.factory.FactoryBean
      • isSingleton

        public boolean isSingleton()
        Specified by:
        isSingleton in interface org.springframework.beans.factory.FactoryBean
      • setUserMap

        public void setUserMap​(Properties userMap)