jfxtras.icalendarfx.properties.PropCalendarUser Maven / Gradle / Ivy
package jfxtras.icalendarfx.properties;
import jfxtras.icalendarfx.parameters.CommonName;
import jfxtras.icalendarfx.parameters.DirectoryEntry;
import jfxtras.icalendarfx.parameters.SentBy;
import jfxtras.icalendarfx.properties.PropLanguage;
import jfxtras.icalendarfx.properties.component.relationship.Attendee;
import jfxtras.icalendarfx.properties.component.relationship.Organizer;
import jfxtras.icalendarfx.properties.component.relationship.PropertyBaseCalendarUser;
/**
* Abstract class for properties with a CAL-ADDRESS value.
* The value is stored as a URI object
*
* CAL-ADDRESS
* Calendar User Address
* RFC 5545, 3.3.3, page 31
*
* This value type is used to identify properties that contain a calendar user address.
* The email address of a calendar user.
*
* Example: mailto:[email protected]
*
* @author David Bal
*
* @param
* @param
*
* Base class
* @see PropertyBaseCalendarUser
*
* concrete subclasses
* @see Organizer
* @see Attendee
*/
public interface PropCalendarUser extends PropLanguage
{
/**
* CN
* Common Name
* RFC 5545, 3.2.2, page 15
*
* To specify the common name to be associated with the calendar user specified by the property.
*
* Example:
* ORGANIZER;CN="John Smith":mailto:[email protected]
*/
CommonName getCommonName();
void setCommonName(CommonName commonName);
/**
* DIR
* Directory Entry Reference
* RFC 5545, 3.2.6, page 18
*
* To specify reference to a directory entry associated with
* the calendar user specified by the property.
*
* Example:
* ORGANIZER;DIR="ldap://example.com:6666/o=ABC%20Industries,
* c=US???(cn=Jim%20Dolittle)":mailto:[email protected]
*/
DirectoryEntry getDirectoryEntryReference();
void setDirectoryEntryReference(DirectoryEntry directoryEntryReference);
/**
* SENT-BY
* RFC 5545, 3.2.18, page 27
*
* To specify the calendar user that is acting on behalf of
* the calendar user specified by the property.
*
* Example:
* ORGANIZER;SENT-BY="mailto:[email protected]":mailto:
* [email protected]
*/
SentBy getSentBy();
void setSentBy(SentBy sentBy);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy