blob: 32a80630af13b5808f423fdff5b161644fc73239 [file] [log] [blame]
/*
* Copyright 2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.jackrabbit.webdav.ordering;
import org.apache.jackrabbit.webdav.DavResource;
import org.apache.jackrabbit.webdav.DavException;
/**
* <code>OrderingResource</code> extends the {@link DavResource} interface by
* METHODS relating to ordering functionality defined by
* <a href="http://www.ietf.org/rfc/rfc3648.txt">RFC 3648</a>.
*/
public interface OrderingResource extends DavResource {
public String COMPLIANCE_CLASS = "ordered-collections";
public String METHODS = "ORDERPATCH";
/**
* Returns true if this resources allows ordering of its internal members.
*
* @return true if internal members are orderable.
*/
public boolean isOrderable();
/**
* Reorders the internal members of this resource according to the
* instructions present in the specified {@link OrderPatch} object.
*
* @param orderPatch as present in the ORDERPATCH request body.
* @throws DavException
*/
public void orderMembers(OrderPatch orderPatch) throws DavException;
}