Deriving the Method Name

The first level of the path (customer) is modified by converting the first character to uppercase (Customer). The HTTP verb for the request GET, PUT, POST, or DELETE is converted to lowercase and prepended to Customer, resulting in the name of the method to be called, which is getCustomer, putCustomer, postCustomer, or deleteCustomer.

An exception is raised if the method does not exist on the JadeRestService subclass.