Published Business Service Method Names
The naming convention for a published business service method is to use a functional description prefaced by an action verb that describes the processing that will occur. For example, for a published business service method that adds an address book record to the database, an appropriate published business service method name is addAddressBook. The business service public method uses the same name as the published business service method.
This code sample shows the naming convention for a published business service method:
public ConfirmAddAddressBook addAddressBook (AddAddressBook vo) throws BusinessServiceException{ ... }