Last active
December 22, 2015 03:38
Revisions
-
sebastienblanc revised this gist
Sep 2, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ AuthenticationResult result = this.identity.login(); LOGGER.info("Login result : " + result); if(result.equals(AuthenticationResult.SUCCESS)){ saleAgent = (SaleAgent) BasicModel.getAgent(identityManager, user.getLoginName()); } else { -
sebastienblanc revised this gist
Sep 2, 2013 . 1 changed file with 7 additions and 7 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,8 @@ AuthenticationResult result = this.identity.login(); LOGGER.info("Login result : " + result); if(result==AuthenticationResult.SUCCESS){ saleAgent = (SaleAgent) BasicModel.getAgent(identityManager, user.getLoginName()); } else { LOGGER.severe("Login failed !"); } -
sebastienblanc created this gist
Sep 2, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ AuthenticationResult result = this.identity.login(); LOGGER.info("Login result : " + result); if(result==AuthenticationResult.SUCCESS){ saleAgent = (SaleAgent) BasicModel.getAgent(identityManager, user.getLoginName()); } else { LOGGER.severe("Login failed !"); }