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

io.milton.http.caldav.PrincipalSearchPropertySetReport Maven / Gradle / Ivy

Go to download

Milton Enterprise: Supports DAV level 2 and above, including Caldav and Carddav. Available on AGPL or commercial licenses

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