io.milton.http.caldav.MultiGetReport 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.ResourceFactory;
import io.milton.http.report.AbstractMultiGetReport;
import io.milton.http.webdav.PropFindPropertyBuilder;
import io.milton.http.webdav.PropFindXmlGenerator;
import javax.xml.namespace.QName;
/**
*
* @author brad
*/
public class MultiGetReport extends AbstractMultiGetReport {
public MultiGetReport(ResourceFactory resourceFactory, PropFindPropertyBuilder propertyBuilder, PropFindXmlGenerator xmlGenerator) {
super(resourceFactory, propertyBuilder, xmlGenerator);
}
@Override
public String getName() {
return "calendar-multiget";
}
@Override
public QName getQualifiedName()
{
return new QName(CalDavProtocol.CALDAV_NS, getName());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy