1 package com.bradmcevoy.http;
2
3 /**
4 * Extends all interfaces required for typical folder behavior.
5 * <P/>
6 * This is a good place to start if you want a normal directory. However, think
7 * carefully about which interfaces to implement. Only implement those which
8 * should actually be supported. Eg, only implement MoveableResource if it can be moved
9 */
10 public interface FolderResource extends MakeCollectionableResource, PutableResource, CopyableResource, DeletableResource, GetableResource, MoveableResource, PropFindableResource{
11
12 }