diff options
author | Thomas Lenz <tlenz@iaik.tugraz.at> | 2018-12-14 13:18:23 +0100 |
---|---|---|
committer | Thomas Lenz <tlenz@iaik.tugraz.at> | 2018-12-14 13:18:23 +0100 |
commit | f27dd94733a9c2cf3a6e4f5611fbeff9de199720 (patch) | |
tree | b47c8d4e9067dc1a50438c2d3151497467e1fcf9 /id/server/modules/moa-id-module-openID | |
parent | da0174d3b037468d243fad688ca1fd91c2049d24 (diff) | |
download | moa-id-spss-f27dd94733a9c2cf3a6e4f5611fbeff9de199720.tar.gz moa-id-spss-f27dd94733a9c2cf3a6e4f5611fbeff9de199720.tar.bz2 moa-id-spss-f27dd94733a9c2cf3a6e4f5611fbeff9de199720.zip |
some more updates and first code for TUG interaction
Diffstat (limited to 'id/server/modules/moa-id-module-openID')
-rw-r--r-- | id/server/modules/moa-id-module-openID/src/main/java/at/gv/egovernment/moa/id/protocols/oauth20/protocol/OAuth20AuthAction.java | 4 |
1 files changed, 2 insertions, 2 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 b00675e7c..3b300c824 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 @@ -58,7 +58,7 @@ import at.gv.egovernment.moa.id.protocols.oauth20.json.OAuthSigner; import at.gv.egovernment.moa.logging.Logger; @Service("OAuth20AuthAction") -class OAuth20AuthAction implements IAction { +public class OAuth20AuthAction implements IAction { @Autowired protected IRevisionLogger revisionsLogger; @Autowired protected ITransactionStorage transactionStorage; @@ -131,7 +131,7 @@ class OAuth20AuthAction implements IAction { } - private Map<String, Object> generateIDToken(OAuth20SessionObject auth20SessionObject, + public Map<String, Object> generateIDToken(OAuth20SessionObject auth20SessionObject, OAuth20AuthRequest oAuthRequest, IAuthData authData, String accessToken) throws SignatureException, MOAIDException { // create response |