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

com.github.sardine.model.Privilege Maven / Gradle / Ivy

package com.github.sardine.model;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlMixed;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
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;
	}

}