
net.fortuna.ical4j.extensions.model.link.Webmention 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
The newest version!
package net.fortuna.ical4j.extensions.model.link;
import net.fortuna.ical4j.model.LinkRelationType;
import net.fortuna.ical4j.model.parameter.LinkRel;
import net.fortuna.ical4j.model.property.Link;
import java.net.URI;
/**
* Identifies a target URI that supports the Webmention protocol. This allows clients that mention a resource in some
* form of publishing process to contact that endpoint and inform it that this resource has been mentioned.
*
* See also Link Relations
*/
public class Webmention extends Link {
public Webmention(URI uri) {
super(uri);
add(new LinkRel(LinkRelationType.webmention));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy