request.getMethod(),
getAllowedMethods(target.getType()));
return false;
}
// Check The Conditions
ResponseInfo info = provider.getInfo(request);
switch(checkConditions(info, request)) {
case 412: preconditionfailed(response); return false;
case 304: notmodified(response); return false;
}
return true;