io.milton.http.caldav.EventResourceImpl 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;
/**
*
* @author brad
*/
public class EventResourceImpl implements EventResource {
private String uniqueId;
private Date start;
private Date end;
private String summary;
@Override
public String getUniqueId() {
return uniqueId;
}
public void setUniqueId(String uniqueId) {
this.uniqueId = uniqueId;
}
@Override
public Date getStart() {
return start;
}
@Override
public void setStart(Date d) {
this.start = d;
}
@Override
public Date getEnd() {
return end;
}
@Override
public void setEnd(Date d) {
this.end = d;
}
@Override
public String getSummary() {
return summary;
}
@Override
public void setSummary(String s) {
this.summary = s;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy