190191192193194195196197
return _urlEncoder.decode(encodedPath); } protected static OperationType _resolveOperation(String desc, OperationType defType) { OperationType type = _operationTypes.get(desc); return (type == null) ? defType : type; }
170171172173174175176177