Principal
192193194195196197198
UserProfile profile = findByAttribute( UID, uid ); if ( profile != null ) { return profile; } throw new NoSuchPrincipalException( "Not in database: " + uid ); }
211212213214215216217
UserProfile profile = findByAttribute( WIKI_NAME, index ); if ( profile != null ) { return profile; } throw new NoSuchPrincipalException( "Not in database: " + index ); }