Example usage for com.liferay.portal.kernel.webdav.methods Method interface-usage

List of usage examples for com.liferay.portal.kernel.webdav.methods Method interface-usage

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.webdav.methods Method interface-usage.

Usage

From source file it.smc.calendar.sync.caldav.CalDAVMethod.java

/**
 * @author Fabio Pezzutto
 */
public interface CalDAVMethod extends Method {

    public static final String POST = "POST";

From source file it.smc.calendar.sync.caldav.methods.BasePropMethodImpl.java

public abstract class BasePropMethodImpl implements Method {

    protected void addResponse(WebDAVRequest webDAVRequest, Resource resource, Element multistatus,
            Set<QName> props) throws Exception {

        // Make a deep copy of the props

From source file it.smc.calendar.sync.caldav.methods.DeleteMethodImpl.java

public class DeleteMethodImpl implements Method {

    @Override
    public int process(WebDAVRequest webDAVRequest) throws WebDAVException {
        WebDAVStorage storage = webDAVRequest.getWebDAVStorage();

From source file it.smc.calendar.sync.caldav.methods.GetMethodImpl.java

public class GetMethodImpl implements Method {

    @Override
    public int process(WebDAVRequest webDAVRequest) throws WebDAVException {
        InputStream is = null;

From source file it.smc.calendar.sync.caldav.methods.PutMethodImpl.java

/**
 * @author Fabio Pezzutto
 */
public class PutMethodImpl implements Method {

    @Override