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

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

There is a newer version: 1.3.3
Show newest version
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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy