Interface AttendeesEntity

All Known Subinterfaces:
EventEntity
All Known Implementing Classes:
BwAlarm, BwEvent, BwEventAnnotation, BwEventNewWrapper, BwEventObj, BwEventProxy

public interface AttendeesEntity
An entity that can have one or more attendees will implement this interface.

Where we have attendees we have recipients.

Author:
Mike Douglass
  • Method Details

    • setAttendees

      void setAttendees(Set<BwAttendee> val)
      Set the attendees Set
      Parameters:
      val - Set of attendees
    • getAttendees

      Set<BwAttendee> getAttendees()
      Get the attendees
      Returns:
      Set attendees list
    • getNumAttendees

      int getNumAttendees()
      Returns:
      int number of attendees.
    • addAttendee

      void addAttendee(BwAttendee val)
      Parameters:
      val -
    • removeAttendee

      boolean removeAttendee(BwAttendee val)
      Parameters:
      val -
      Returns:
      boolean true if removed.
    • copyAttendees

      Set<BwAttendee> copyAttendees()
      Return a copy of the Set
      Returns:
      Set of BwAttendee
    • cloneAttendees

      Set<BwAttendee> cloneAttendees()
      Return a clone of the Set
      Returns:
      Set of BwAttendee
    • setRecipients

      void setRecipients(Set<String> val)
      Set the recipients Set
      Parameters:
      val - Set of (String)recipients
    • getRecipients

      Set<String> getRecipients()
      Get the recipients
      Returns:
      Set recipients set
    • getNumRecipients

      int getNumRecipients()
      Returns:
      int number of recipients.
    • addRecipient

      void addRecipient(String val)
      Parameters:
      val -
    • removeRecipient

      boolean removeRecipient(String val)
      Parameters:
      val -
      Returns:
      boolean true if removed.