io.milton.http.caldav.PrincipalSearchPropertySetReport 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
/*
* 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;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
*
* @author alex
*/
public class PrincipalSearchPropertySetReport implements Report {
private static final Logger log = LoggerFactory.getLogger(PrincipalSearchPropertySetReport.class);
@Override
public String getName() {
return "principal-search-property-set";
}
@Override
public String process(String host, String path, Resource r, Document doc) {
log.debug("process");
return "\n"
+ "\n"
+ "\n"
+ "\n"
+ " \n"
+ " \n"
+ "Display Name \n"
+ " \n"
+ "\n"
+ "\n"
+ " \n"
+ " \n"
+ "Email Addresses \n"
+ " \n"
+ "\n"
+ "\n"
+ " \n"
+ " \n"
+ "Last Name \n"
+ " \n"
+ "\n"
+ "\n"
+ " \n"
+ " \n"
+ "Calendar User Type \n"
+ " \n"
+ "\n"
+ "\n"
+ " \n"
+ " \n"
+ "First Name \n"
+ " \n"
+ "\n"
+ "\n"
+ " \n"
+ " \n"
+ "Calendar User Address Set \n"
+ " \n"
+ " ";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy