root = {} root[ "PUT" ] = "handlePut" root[ "HEAD" ] = "handleHead" root[ "GET" ] = "handleGet" root[ "MOVE" ] = "handleMove" root[ "OPTIONS" ] = "handleOptions" root[ "MKCOL" ] = "handleMkCol" root[ "PROPPATCH" ] = "handlePropPatch" root[ "TRACE" ] = "handleTrace" root[ "PROPFIND" ] = "handlePropFind" root[ "POST" ] = "handlePost" root[ "COPY" ] = "handleCopy" root[ "CONNECT" ] = "handleConnect" root[ "DELETE" ] = "handleDelete" return root