Class BTGisAuthConfigLoad
java.lang.Object
overit.geocall.bl.BusinessTask<GisAuthConfigLoadEvent>
overit.geocallapp.utilities.core.bl.common.validexecution.ValidExecutionBusinessTask<GisAuthConfigLoadEvent>
overit.geocallapp.wfm.core.bl.gis.authentication.task.BTGisAuthConfigLoad
- All Implemented Interfaces:
Serializable,Tool,ValidExecution
@Deprecated(since="22.0",
forRemoval=true)
@Event(GisAuthConfigLoadEvent.class)
public class BTGisAuthConfigLoad
extends ValidExecutionBusinessTask<GisAuthConfigLoadEvent>
Deprecated, for removal: This API element is subject to removal in a future version.
Business task in order to load a
When the
BOGisAuthConfig. When the
GisAuthConfigLoadEvent is launched the BT notices
the call and loads the BOGisAuthConfig basing on the event's
input. - Since:
- 17.0
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDeprecated, for removal: This API element is subject to removal in a future version. -
Method Summary
Modifier and TypeMethodDescriptionprotected voidexecute(GisAuthConfigLoadEvent event, PoolKit poolKit) Deprecated, for removal: This API element is subject to removal in a future version.Executes the actual business logic after validation has passed.Deprecated, for removal: This API element is subject to removal in a future version.Returns the exception that describes why execution is invalid.booleanDeprecated, for removal: This API element is subject to removal in a future version.Determines whether the current state is valid for execution.booleanDeprecated, for removal: This API element is subject to removal in a future version.Controls whether an exception should be thrown when execution is invalid.Methods inherited from class overit.geocallapp.utilities.core.bl.common.validexecution.ValidExecutionBusinessTask
body, checkValidExecution, getEventMethods inherited from class overit.geocall.bl.BusinessTask
start, start, startAlone, startInBackground
-
Constructor Details
-
BTGisAuthConfigLoad
public BTGisAuthConfigLoad()Deprecated, for removal: This API element is subject to removal in a future version.
-
-
Method Details
-
execute
protected void execute(GisAuthConfigLoadEvent event, PoolKit poolKit) throws DAException, DAValidateException Deprecated, for removal: This API element is subject to removal in a future version.Description copied from class:ValidExecutionBusinessTaskExecutes the actual business logic after validation has passed.- Specified by:
executein classValidExecutionBusinessTask<GisAuthConfigLoadEvent>- Parameters:
event- the input event to processpoolKit- thePoolKit- Throws:
DAException- if a data access error occurs during executionDAValidateException- if validation fails during execution
-
isValidExecution
public boolean isValidExecution()Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:ValidExecutionDetermines whether the current state is valid for execution.- Returns:
- true if execution is valid, false otherwise
-
throwExceptionIfInvalid
public boolean throwExceptionIfInvalid()Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:ValidExecutionControls whether an exception should be thrown when execution is invalid. This method allows implementing classes to specify their exception-throwing behavior whenValidExecution.isValidExecution()returns false. If this method returns true, callers should throw the exception returned byValidExecution.getException().- Returns:
- true if an exception should be thrown for invalid execution, false otherwise
-
getException
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:ValidExecutionReturns the exception that describes why execution is invalid. This method provides detailed information about validation failures whenValidExecution.isValidExecution()returns false. The returned exception can be thrown by callers ifValidExecution.throwExceptionIfInvalid()returns true.- Returns:
- a
DAValidateExceptiondescribing the validation failure, or null if execution is valid or no specific exception is available
-