Skip to content
This repository has been archived by the owner on Apr 8, 2019. It is now read-only.

Commit

Permalink
Minor improvement.
Browse files Browse the repository at this point in the history
  • Loading branch information
metacosm committed May 7, 2013
1 parent dbe6d5c commit 376185c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ protected boolean handleSpecialProperties(Map<String, Object> propertyMap)

protected boolean handleUserAuthentication(Map<String, Object> propertyMap)
{
if (propertyMap.containsKey(WSHandlerConstants.USER) && propertyMap.get(WSHandlerConstants.USER).equals(GTN_CURRENT_USER))
final Object userValue = propertyMap.get(WSHandlerConstants.USER);
if (GTN_CURRENT_USER.equals(userValue))
{
CredentialsAccessor credentialsAccessor = CredentialsAccess.getInstance().getCredentialsAccessor();
if (credentialsAccessor != null && credentialsAccessor.getCredentials() != null)
Expand Down

0 comments on commit 376185c

Please sign in to comment.