Examples of IdentityEvent


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

      super(IdentityContext.TYPE_USER_MODULE);
   }

   protected void fireUserCreatedEvent(Object userId, String userName) throws IdentityException
   {
      IdentityEvent event = new UserCreatedEvent(userId, userName);
      getIdentityEventBroadcaster().fireEvent(event);
   }
View Full Code Here

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

      getIdentityEventBroadcaster().fireEvent(event);
   }

   protected void fireUserDestroyedEvent(Object userId, String userName) throws IdentityException
   {
      IdentityEvent event = new UserDestroyedEvent(userId, userName);
      getIdentityEventBroadcaster().fireEvent(event);
   }
View Full Code Here

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

      this.profileConfigFile = profileConfigFile;
   }

   protected void fireUserProfileChangedEvent(Object userId, String userName, String propertyName, Object newValue) throws IdentityException
   {
      IdentityEvent event = new UserProfileChangedEvent(userId, userName, propertyName, newValue);
      getIdentityEventBroadcaster().fireEvent(event);
   }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.