com.bradrydzewski.gwt.calendar.client
Class Attendee

java.lang.Object
  extended by com.bradrydzewski.gwt.calendar.client.Attendee
All Implemented Interfaces:
Serializable

public class Attendee
extends Object
implements Serializable

A simple JavaBean class representing an entity associated to an appointment, most likely a person, but might as well be a resource (like a conference room or a projector).

See Also:
Serialized Form

Constructor Summary
Attendee()
           
 
Method Summary
 Attending getAttending()
          Returns the attendance status of this attendant to the Appointment referencing it.
 String getEmail()
          Returns this Attendee email address.
 String getImageUrl()
          Returns the URL to an image to (optionally) depict this Attendee in the views.
 String getName()
          Returns the name (if a person) or description (when a resource) of this Attendee.
 void setAttending(Attending attending)
          Sets the attendance status of this attendant to the Appointment referencing it.
 void setEmail(String email)
          Sets this Attendee email address.
 void setImageUrl(String imageUrl)
          Sets the URL to an image to (optionally) depict this Attendee in the views.
 void setName(String name)
          Sets the name (if a person) or description (when a resource) of this Attendee.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Attendee

public Attendee()
Method Detail

getName

public String getName()
Returns the name (if a person) or description (when a resource) of this Attendee.

Returns:
The currently configured name of this attendee

setName

public void setName(String name)
Sets the name (if a person) or description (when a resource) of this Attendee.

Parameters:
name - The name of this attendee

getEmail

public String getEmail()
Returns this Attendee email address.

Returns:
The email address

setEmail

public void setEmail(String email)
Sets this Attendee email address.

Parameters:
email - The email address

getAttending

public Attending getAttending()
Returns the attendance status of this attendant to the Appointment referencing it.

Returns:
The attendance status of this Attendee

setAttending

public void setAttending(Attending attending)
Sets the attendance status of this attendant to the Appointment referencing it.

Parameters:
attending - The attendance status

getImageUrl

public String getImageUrl()
Returns the URL to an image to (optionally) depict this Attendee in the views.

Returns:
A URL (relative or absolute) meaningful within the deployed application context

setImageUrl

public void setImageUrl(String imageUrl)
Sets the URL to an image to (optionally) depict this Attendee in the views.

Parameters:
imageUrl - A URL (relative or absolute) meaningful within the


Copyright © 2012. All Rights Reserved.