Package org.jboss.portal.identity.event

Examples of org.jboss.portal.identity.event.RoleUpdatedEvent


   }

   protected void fireRoleUpdatedEvent(Object roleId, String roleName, String displayName) throws IdentityException
   {
      RoleUpdatedEvent event = new RoleUpdatedEvent(roleId, roleName, displayName);
      getIdentityEventBroadcaster().fireEvent(event);
   }
View Full Code Here


      if (broadcaster != null)
      {
         // This can be called on object creation by hibernate so make sure that all fields are populated first
         if (getId() != null && getName() != null && getDisplayName() != null)
         {
            RoleUpdatedEvent event = new RoleUpdatedEvent(getId(), getName(), displayName);
            broadcaster.fireEvent(event);
         }

      }
   }
View Full Code Here

TOP

Related Classes of org.jboss.portal.identity.event.RoleUpdatedEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.