HttpServletResponse httpResponse) throws IOException,
ServletException {
@SuppressWarnings("unchecked")
Map<String,String[]> queryMap = httpRequest.getParameterMap();
String message;
FileLocationDB locationDB = getLocationDB();
try {
message = handleOperation(locationDB,queryMap);
httpResponse.setStatus(HttpServletResponse.SC_OK);
httpResponse.setContentType("text/plain");
OutputStream os = httpResponse.getOutputStream();