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

de.svws_nrw.davapi.model.dav.Privilege 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.model.dav;

import jakarta.xml.bind.annotation.*;
import java.util.ArrayList;
import java.util.List;

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "content"
})
@XmlRootElement(name = "privilege")
public class Privilege {
    @XmlMixed
    @XmlAnyElement(lax = true)
	private List content;

	public List getContent() {
		if (content==null)
			content = new ArrayList<>();
		return content;
	}

	public void setContent(List content) {
		this.content = content;
	}

}