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