com.github.sardine.model.Acl 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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import java.util.List;
/**
* Java class for anonymous complex type.
*
* The following schema fragment specifies the expected content contained within this class.
*
*
* <D:owner>
* <D:href>http://www.example.com/acl/users/gstein</D:href>
* </D:owner>
*
*
*
*
*/
@XmlAccessorType(XmlAccessType.PROPERTY)
@XmlType(name = "")
@XmlRootElement(name = "acl")
public class Acl {
private List ace;
public List getAce() {
return ace;
}
public void setAce(List ace) {
this.ace = ace;
}
}