throw new HBaseRestException("method not supported");
} else if (pathSegments.length == 1 && pathSegments[0].length > 0) {
// if it has only table name
Status s = createStatus(request, response);
Map<String, String[]> queryMap = request.getParameterMap();
IHBaseRestParser parser = this.getParser(request);
byte[] input = readInputBuffer(request);
tableController.put(s, pathSegments, queryMap, input, parser);
} else {
// Equate PUT with a POST.
doPost(request, response);