com.atlassian.jira.event.user
Interface UserEventListener

All Superinterfaces:
EventListener, JiraListener
All Known Implementing Classes:
DebugListener, DebugMailListener, DebugParamListener, MailListener

public interface UserEventListener
extends JiraListener

The UserEventListener listens for all UserEvents.

See Also:
UserEvent

Method Summary
 void userCannotChangePassword(UserEvent event)
          Fired when a user tries to change their password, and the password cannot be updated
 void userCreated(UserEvent event)
          Fired when a user is created automatically
 void userForgotPassword(UserEvent event)
          Fired when a user indicates they have forgotten their password
 void userForgotUsername(UserEvent event)
          Fired when a user indicates they have forgotten their username
 void userSignup(UserEvent event)
          Fired when a user signs up manually
 
Methods inherited from interface com.atlassian.jira.event.JiraListener
getAcceptedParams, getDescription, init, isInternal, isUnique
 

Method Detail

userSignup

void userSignup(UserEvent event)
Fired when a user signs up manually

Parameters:
event - the event in play

userCreated

void userCreated(UserEvent event)
Fired when a user is created automatically

Parameters:
event - the event in play

userForgotPassword

void userForgotPassword(UserEvent event)
Fired when a user indicates they have forgotten their password

Parameters:
event - the event in play

userForgotUsername

void userForgotUsername(UserEvent event)
Fired when a user indicates they have forgotten their username

Parameters:
event - the event in play

userCannotChangePassword

void userCannotChangePassword(UserEvent event)
Fired when a user tries to change their password, and the password cannot be updated

Parameters:
event - the event in play


Copyright © 2002-2012 Atlassian. All Rights Reserved.