Skip to content

Instantly share code, notes, and snippets.

@sebastienblanc
Last active December 10, 2015 23:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sebastienblanc/4510879 to your computer and use it in GitHub Desktop.
Save sebastienblanc/4510879 to your computer and use it in GitHub Desktop.
@Override
public AeroGearUser get(String id) {
User user = identityManager.getUser(id);
if(user != null){
return Converter.convertToAerogearUser(identityManager.getUser(id));
}
return null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment