Example usage for com.liferay.portal.kernel.webdav WebDAVStorage putResource

List of usage examples for com.liferay.portal.kernel.webdav WebDAVStorage putResource

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.webdav WebDAVStorage putResource.

Prototype

public int putResource(WebDAVRequest webDAVRequest) throws WebDAVException;

Source Link

Usage

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

License:Open Source License

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

    return storage.putResource(webDAVRequest);
}