1 /* 2 ******************************************************************************* 3 * Copyright (c) 2005 Chris Rose and AIMedia 4 * All rights reserved. UserChangeListener and the accompanying materials 5 * are made available under the terms of the Common Public License v1.0 6 * which accompanies this distribution, and is available at 7 * http://www.eclipse.org/legal/cpl-v10.html 8 * 9 * Contributors: 10 * Chris Rose 11 *******************************************************************************/ 12 package ca.spaz.cron.user; 13 14 /*** 15 * An interface to be implemented by objects interested in user model changes. 16 * @author Chris Rose 17 */ 18 public interface UserChangeListener { 19 20 /*** 21 * This event is fired whenever the user model changes in some way. 22 * @param user the <code>User</code> that has changed. 23 */ 24 void userChanged(User user); 25 26 }