package org.argeo.cms.dav; import java.util.ArrayList; import java.util.HashMap; import java.util.HashSet; import java.util.List; import java.util.Map; import java.util.Set; import javax.xml.namespace.QName; public class DavResponse { final static String MOD_DAV_NAMESPACE = "http://apache.org/dav/props/"; private String href; private boolean collection; private Set propertyNames = new HashSet<>(); private Map properties = new HashMap<>(); private List resourceTypes = new ArrayList<>(); public Map getProperties() { return properties; } public void setHref(String href) { this.href = href; } public String getHref() { return href; } public boolean isCollection() { return collection; } public void setCollection(boolean collection) { this.collection = collection; } public List getResourceTypes() { return resourceTypes; } public Set getPropertyNames() { return propertyNames; } }