Class BTCrewShellAddressInsert
java.lang.Object
overit.geocall.bl.BusinessTask<CrewShellAddressInsertEvent>
overit.geocallapp.utilities.core.bl.common.validexecution.ValidExecutionBusinessTask<CrewShellAddressInsertEvent>
overit.geocallapp.utilities.core.bl.common.validexecution.ValidPermissionBusinessTask<CrewShellAddressInsertEvent>
overit.geocallapp.wfm.core.bl.crewshell.address.task.BTCrewShellAddressInsert
- All Implemented Interfaces:
Serializable,Tool,ValidExecution
@Event(CrewShellAddressInsertEvent.class)
public class BTCrewShellAddressInsert
extends ValidPermissionBusinessTask<CrewShellAddressInsertEvent>
Business task to insert a
When the
BOCrewShellAddress object. When the
CrewShellAddressInsertEvent event is launched the BT notices the
call and inserts the BOCrewShellAddress object basing on the event's input. - Since:
- 16.0
- See Also:
- GCApi:
- task
-
Field Summary
Fields inherited from class overit.geocallapp.utilities.core.bl.common.validexecution.ValidPermissionBusinessTask
LOG -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected voidexecute(CrewShellAddressInsertEvent event, PoolKit poolKit) Executes the actual business logic after validation has passed.booleanDetermines whether the current state is valid for execution.protected voidvalidate(BOCrewShellAddress input, PoolKit poolKit) Validates the association between a givenBOCrewShellobject and a givenBOAddressobject.Methods inherited from class overit.geocallapp.utilities.core.bl.common.validexecution.ValidPermissionBusinessTask
checkValidExecution, getException, throwExceptionIfInvalidMethods inherited from class overit.geocallapp.utilities.core.bl.common.validexecution.ValidExecutionBusinessTask
body, getEventMethods inherited from class overit.geocall.bl.BusinessTask
start, start, startAlone, startInBackground
-
Constructor Details
-
BTCrewShellAddressInsert
public BTCrewShellAddressInsert()
-
-
Method Details
-
isValidExecution
public boolean isValidExecution()Description copied from interface:ValidExecutionDetermines whether the current state is valid for execution.- Returns:
- true if execution is valid, false otherwise
-
execute
protected void execute(CrewShellAddressInsertEvent event, PoolKit poolKit) throws DAException, DAValidateException Description copied from class:ValidExecutionBusinessTaskExecutes the actual business logic after validation has passed.- Specified by:
executein classValidExecutionBusinessTask<CrewShellAddressInsertEvent>- Parameters:
event- the input event to processpoolKit- thePoolKit- Throws:
DAException- if a data access error occurs during executionDAValidateException- if validation fails during execution
-
validate
protected void validate(BOCrewShellAddress input, PoolKit poolKit) throws DAValidateException, DAException Validates the association between a givenBOCrewShellobject and a givenBOAddressobject. Association stands forBOCrewShellAddressobject's insertion. More precisely, this validation method checks: if theBOOperationCenterobject (i.e., operation center) related to the givenBOCrewShellobject (i.e., crew shell) has been deactivated for crew shells; if the givenBOCrewShellobject is not null; if the givenBOAddressobject is not null; if already exists aBOCrewShellAddressobject which represents the association between the givenBOCrewShellobject and the givenBOAddressobject.- Parameters:
input- theBOCrewShellAddressto be insertedpoolKit- thePoolKitpoolKit- Throws:
DAValidateException- if there is a data validation exceptionDAException- if a genericExceptionobject is thrown
-