diff options
author | Christian Maierhofer <cmaierhofer@iaik.tugraz.at> | 2016-04-21 08:30:09 +0200 |
---|---|---|
committer | Christian Maierhofer <cmaierhofer@iaik.tugraz.at> | 2016-04-21 08:30:09 +0200 |
commit | fa7f69cffc2c9b8d89ecc63f2dce72fffe1b671a (patch) | |
tree | bc4e9011f0200194a2db97bc067557e5a4b7e4a3 /id/server/modules/moa-id-module-openID/src | |
parent | 3acbee93bd61ffba7b192282f534dc614d1cc280 (diff) | |
download | moa-id-spss-fa7f69cffc2c9b8d89ecc63f2dce72fffe1b671a.tar.gz moa-id-spss-fa7f69cffc2c9b8d89ecc63f2dce72fffe1b671a.tar.bz2 moa-id-spss-fa7f69cffc2c9b8d89ecc63f2dce72fffe1b671a.zip |
Added RedisTransaction storage
Diffstat (limited to 'id/server/modules/moa-id-module-openID/src')
-rw-r--r-- | id/server/modules/moa-id-module-openID/src/main/java/at/gv/egovernment/moa/id/protocols/oauth20/protocol/OAuth20AuthAction.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/id/server/modules/moa-id-module-openID/src/main/java/at/gv/egovernment/moa/id/protocols/oauth20/protocol/OAuth20AuthAction.java b/id/server/modules/moa-id-module-openID/src/main/java/at/gv/egovernment/moa/id/protocols/oauth20/protocol/OAuth20AuthAction.java index 803ae388f..b9bed7a22 100644 --- a/id/server/modules/moa-id-module-openID/src/main/java/at/gv/egovernment/moa/id/protocols/oauth20/protocol/OAuth20AuthAction.java +++ b/id/server/modules/moa-id-module-openID/src/main/java/at/gv/egovernment/moa/id/protocols/oauth20/protocol/OAuth20AuthAction.java @@ -93,7 +93,7 @@ class OAuth20AuthAction implements IAction { // store data in oath session - transactionStorage.put(code, o); + transactionStorage.put(code, o, -1); Logger.debug("Saved OAuth20SessionObject in session with id: " + code); |