Package overit.geocall.da
Interface FeedbackService
public interface FeedbackService
Service about the DAO feedback execution phase to update a provided
CommandContext after running a query to handle the feedback.-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionvoidfeedback(@NotNull CommandContext cc, @NotNull PoolKit pk, @NotNull DBStatement dbs) Updates the providedCommandContextwith the query results.
-
Field Details
-
FIELDS_TO_BE_DECRYPTED_CANNOT_BE_NULL
- See Also:
-
ENCRYPTION_SERVICE_CANNOT_BE_NULL
- See Also:
-
COMMAND_CONTEXT_CANNOT_BE_NULL
- See Also:
-
POOL_KIT_CANNOT_BE_NULL
- See Also:
-
DB_STATEMENT_CANNOT_BE_NULL
- See Also:
-
-
Method Details
-
feedback
void feedback(@NotNull @NotNull CommandContext cc, @NotNull @NotNull PoolKit pk, @NotNull @NotNull DBStatement dbs) throws DAException, DAValidateException, CryptoException Updates the providedCommandContextwith the query results.- Parameters:
cc-CommandContextto update with the query results.pk- ThePoolKitfrom which extract the connectionsdbs- TheDBStatementthat is used to access the database- Throws:
DAValidateException- in case of db validation error.DAException- in case of db communication error.CryptoException- exception thrown in case of error occurred during the data decryption.
-