use of com.zimbra.cs.dav.service.method.PropFind in project zm-mailbox by Zimbra.
the class DavServlet method init.
@Override
public void init() throws ServletException {
super.init();
sMethods = new HashMap<String, DavMethod>();
addMethod(new Copy());
addMethod(new Delete());
addMethod(new Get());
addMethod(new Head());
addMethod(new Lock());
addMethod(new MkCol());
addMethod(new Move());
addMethod(new Options());
addMethod(new Post());
addMethod(new Put());
addMethod(new PropFind());
addMethod(new PropPatch());
addMethod(new Unlock());
addMethod(new MkCalendar());
addMethod(new Report());
addMethod(new Acl());
}
Aggregations