/**
- * Process a POST request for the specified resource.
+ * Process a PUT request for the specified resource.
*
* @param req The servlet request we are processing
* @param resp The servlet response we are creating
/**
- * Process a POST request for the specified resource.
+ * Process a DELETE request for the specified resource.
*
* @param req The servlet request we are processing
* @param resp The servlet response we are creating
// Stack of the objects one level below
Stack<String> stackBelow = new Stack<String>();
-
+
while ((!stack.isEmpty()) && (depth >= 0)) {
String currentPath = stack.pop();
/**
- * Process a POST request for the specified resource.
+ * Process a PUT request for the specified resource.
*
* @param req The servlet request we are processing
* @param resp The servlet response we are creating