Skip to content

Instantly share code, notes, and snippets.

View PiotrG-dev-org's full-sized avatar

PiotrG-dev-org

View GitHub Profile
/**
* @description URL dispatcher
*/
@RestResource(urlMapping = '/*')
global class RestDispatcher
{
// dispatchables
static Map<RequestType, List<Dispatchable>> dispatchables;
// requestTypes
enum RequestType {HTTPGET, HTTPPOST, HTTPPUT, HTTPDELETE, HTTPPATCH}