234235236237238239240241242243
if (filteredAttrs.isEmpty()) { return null; } UserProfile profile = new UserProfileImpl(userName, filteredAttrs); return profile; }
75767778798081
/** * {@inheritDoc} */ public final UserProfile createUserProfileInstance() { return new UserProfileImpl(); }
83848586878889
/** * {@inheritDoc} */ public UserProfile createUserProfileInstance(String userName) { return new UserProfileImpl(userName); }
487488489490491492493
{ } public UserProfile createUserProfileInstance() { return new UserProfileImpl(); }
492493494495496497498
return new UserProfileImpl(); } public UserProfile createUserProfileInstance(String userName) { return new UserProfileImpl(userName); }
507508509510511512513
return new ArrayList(); } public UserProfile removeUserProfile(String userName, boolean broadcast) throws Exception { return new UserProfileImpl(); }
62636465666768
listeners_.add(listener); } final public UserProfile createUserProfileInstance() { return new UserProfileImpl(); }
67686970717273
269270271272273274275276277278
69707172737475