io.milton.http.caldav.EventResource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of milton-server-ent Show documentation
Show all versions of milton-server-ent Show documentation
Milton Enterprise: Supports DAV level 2 and above, including Caldav and Carddav. Available on AGPL or
commercial licenses
The newest version!
/*
* Copyright 2012 McEvoy Software Ltd.
*
*/
package io.milton.http.caldav;
import java.util.Date;
/**
* An optional interface to represent a VEVENT item
*
* Only use this if you want to use ICalFormatter
*
* @author brad
*/
public interface EventResource {
String getUniqueId();
Date getStart();
void setStart( Date d );
Date getEnd();
void setEnd( Date d );
String getSummary();
void setSummary( String s );
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy