diff options
| author | Thomas Lenz <tlenz@iaik.tugraz.at> | 2016-02-24 14:02:43 +0100 | 
|---|---|---|
| committer | Thomas Lenz <tlenz@iaik.tugraz.at> | 2016-02-24 14:02:43 +0100 | 
| commit | 3bee4536dce4136d83d6d815e6118e94f1efe8fd (patch) | |
| tree | 796570f93b7cc6f17ce53cc0759da790967a77fa /id/server/modules | |
| parent | aa29e21e7356aee64179eebfbdb25fa71dc505f6 (diff) | |
| download | moa-id-spss-3bee4536dce4136d83d6d815e6118e94f1efe8fd.tar.gz moa-id-spss-3bee4536dce4136d83d6d815e6118e94f1efe8fd.tar.bz2 moa-id-spss-3bee4536dce4136d83d6d815e6118e94f1efe8fd.zip | |
add or move some log messages
Diffstat (limited to 'id/server/modules')
| -rw-r--r-- | id/server/modules/moa-id-module-openID/src/main/java/at/gv/egovernment/moa/id/protocols/oauth20/protocol/OAuth20AuthAction.java | 7 | 
1 files changed, 4 insertions, 3 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 17d0738e3..e7594954b 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 @@ -76,8 +76,8 @@ class OAuth20AuthAction implements IAction {  		try {  			String accessToken = UUID.randomUUID().toString(); -			 -			Logger.debug("Stored session with id: " + code); +						 +			Logger.debug("Build OAuth20SessionObject from authenticationData.");  			OAuth20SessionObject o = new OAuth20SessionObject();  			if (responseType.equals(OAuth20Constants.RESPONSE_CODE)) {  				o.setScope(oAuthRequest.getScope()); @@ -91,7 +91,8 @@ class OAuth20AuthAction implements IAction {  				throw new OAuth20ResponseTypeException();  			} -			// store data in oath session			 +			// store data in oath session +			  			transactionStorage.put(code, o);  			Logger.debug("Saved OAuth20SessionObject in session with id: " + code); | 
