summaryrefslogtreecommitdiff
path: root/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/IRequestStorage.java
diff options
context:
space:
mode:
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;
}