summaryrefslogtreecommitdiff
path: root/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/IRequestStorage.java
diff options
context:
space:
mode:
authorThomas <thomas.lenz@egiz.gv.at>2019-12-04 22:54:51 +0100
committerThomas <thomas.lenz@egiz.gv.at>2019-12-04 22:54:51 +0100
commit95b21a826e5d81fdeabcf4673a9e87047edaec9d (patch)
treed8d55da492dd86041c31d68651afa21c80313362 /eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/IRequestStorage.java
parent759ac5f42c6aff901dbeede4fbf1a1d2e08cad0f (diff)
downloadEAAF-Components-95b21a826e5d81fdeabcf4673a9e87047edaec9d.tar.gz
EAAF-Components-95b21a826e5d81fdeabcf4673a9e87047edaec9d.tar.bz2
EAAF-Components-95b21a826e5d81fdeabcf4673a9e87047edaec9d.zip
to some more code quality tasks
Diffstat (limited to 'eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/IRequestStorage.java')
-rw-r--r--eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/IRequestStorage.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/IRequestStorage.java b/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/IRequestStorage.java
index c76dfe76..efd19591 100644
--- a/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/IRequestStorage.java
+++ b/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/IRequestStorage.java
@@ -38,7 +38,7 @@ public interface IRequestStorage {
* @return Pending Request Object
* @throws PendingReqIdValidationException if the pendingRequestId was invalid
*/
- public IRequest getPendingRequest(String pendingReqID) throws PendingReqIdValidationException;
+ IRequest getPendingRequest(String pendingReqID) throws PendingReqIdValidationException;
/**
* Store a pending-request in storage.
@@ -46,14 +46,14 @@ public interface IRequestStorage {
* @param pendingRequest Pending-Request object to store
* @throws EaafException In case of a storage error
*/
- public void storePendingRequest(IRequest pendingRequest) throws EaafException;
+ void storePendingRequest(IRequest pendingRequest) throws EaafException;
/**
* Remove a pending-request from storage.
*
* @param pendingReqId Id of the pending request
*/
- public void removePendingRequest(String pendingReqId);
+ void removePendingRequest(String pendingReqId);
/**
* change the pendingRequestId of a pending-request.
@@ -62,6 +62,6 @@ public interface IRequestStorage {
* @return new pending-requestId
* @throws EaafException in case of a storage error
*/
- public String changePendingRequestID(IRequest pendingRequest) throws EaafException;
+ String changePendingRequestID(IRequest pendingRequest) throws EaafException;
}