FileDocCategorySizeDatePackage
NotificationRecipient.javaAPI DocExample653Thu Feb 17 20:01:06 GMT 2000RelMgmt.PartyRole

NotificationRecipient.java

/*----------------------------------------------------------------------------
Copyright (c)2000 TogetherSoft LLC. Patents pending. All rights reserved.
----------------------------------------------------------------------------*/

package RelMgmt.PartyRole;

import java.util.Vector;

/** @stereotype role */
public class NotificationRecipient extends RelMgmt.Party.PartyRole {
    public void acceptChangeNotification() {
    }

    public Vector listNotifications() {
        return new Vector();
    }

    public Vector listFilteredNotifications() {
        return new Vector();
    }

    private int notificationFilter;
}