* @see #handleObjectPost(Object)
*/
@Override
public final void handlePost() {
DataFormat format = getFormatPostOrPut();
Object object = format.toObject( getRequest().getEntity() );
String location = null;
try {
location = handleObjectPost(object);
}
catch (Exception e) {