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

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

Go to download

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