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

de.svws_nrw.davapi.api.REPORT Maven / Gradle / Ivy

Go to download

Diese Bibliothek enthält die Java-Server-Definition der CalDAV und CardDAV-Schnittstelle für die Schulverwaltungssoftware in NRW

The newest version!
package de.svws_nrw.davapi.api;

import jakarta.ws.rs.HttpMethod;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Interface für Annotation zur Erweiterung des APIs um die DAV-spezifische
 * HTTP-Methode REPORT. Mit REPORT können mehrere, definierte Informationen zu
 * einer Ressource abgefragt werden.
 */
@Target({ ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)
@HttpMethod("REPORT")
public @interface REPORT {
	// kein code nötig
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy