Business Service Class Names
The naming convention for a business service class is to use the functional description with Processor added at the end of the name, for example, AddressBookProcessor and AddressBookQueryProcessor.
This code sample shows the naming convention for a business service class:
public abstract class AddressBookProcessor extends BusinessService { .... }