All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.fortuna.ical4j.extensions.model.link.Webmention Maven / Gradle / Ivy

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