io.milton.http.caldav.ACLPrincipalPropSetReport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of milton-server-ent Show documentation
Show all versions of milton-server-ent Show documentation
Milton Enterprise: Supports DAV level 2 and above, including Caldav and Carddav. Available on AGPL or
commercial licenses
The newest version!
/*
* Copyright 2012 McEvoy Software Ltd.
*
*/
package io.milton.http.caldav;
import io.milton.http.report.Report;
import io.milton.resource.Resource;
import org.jdom2.Document;
/**
*
* @author alex
*/
public class ACLPrincipalPropSetReport implements Report {
@Override
public String getName() {
return "acl-principal-prop-set";
}
@Override
public String process(String host, String path, Resource r, Document doc) {
throw new UnsupportedOperationException("Not supported yet.");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy