![JAR search and dependency download from the Maven repository](/logo.png)
net.fortuna.ical4j.extensions.model.link.Status Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ical4j-extensions Show documentation
Show all versions of ical4j-extensions Show documentation
Support for additional non-standard iCalendar objects
package net.fortuna.ical4j.extensions.model.link;
import net.fortuna.ical4j.model.LinkRelationType;
import net.fortuna.ical4j.model.parameter.LinkRel;
import java.net.URI;
/**
* Identifies a resource that represents the context's status.
*
* See also Link Relations
*/
public class Status extends ImmutableLink {
public Status(URI uri) {
super(uri);
add(new LinkRel(LinkRelationType.status));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy