Examples of updateUser()


Examples of net.sf.jportlet.service.user.UserService.updateUser()

                    srv.addUser( request );
                    event.setReturnCode( "register" );
                }
                else
                {
                    srv.updateUser( request );
                    event.setReturnCode( "update" );
                }

                notifyDataChanged( event );
                return;
View Full Code Here

Examples of net.sourceforge.pebble.security.SecurityRealm.updateUser()

          profile,
          currentUserDetails.getRoles(),
          currentUserDetails.getPreferences(),
          currentUserDetails.isDetailsUpdateable());

          realm.updateUser(newUserDetails);

          return new RedirectView(blog.getUrl() + "editUserDetails.secureaction");
      }

      getModel().put("validationContext", validationContext);
View Full Code Here

Examples of open.dolphin.delegater.UserDelegater.updateUser()

            Task task = new Task<Boolean>(c, message, PROGRESS_NOTE, maxEstimation) {
       
                @Override
                protected Boolean doInBackground() throws Exception {
                    logger.debug("ChangePassword doInBackground");
                    int cnt = udl.updateUser(updateModel);
                    return cnt > 0 ? true : false;
                }
               
                @Override
                protected void succeeded(Boolean result) {
View Full Code Here

Examples of org.apache.archiva.redback.users.UserManager.updateUser()

        throws UserNotFoundException, UserManagerException
    {

        UserManager userManager = userManagerPerId.get( user.getUserManagerId() );

        user = userManager.updateUser( user );

        if ( useUsersCache() )
        {
            usersCache.put( user.getUsername(), user );
        }
View Full Code Here

Examples of org.apache.archiva.redback.users.UserManager.updateUser()

        throws UserNotFoundException, UserManagerException
    {

        UserManager userManager = userManagerPerId.get( user.getUserManagerId() );

        user = userManager.updateUser( user );

        if ( useUsersCache() )
        {
            usersCache.put( user.getUsername(), user );
        }
View Full Code Here

Examples of org.apache.derby.iapi.sql.dictionary.DataDictionary.updateUser()

            */
            dd.startWriting(lcc);

            UserDescriptor  userDescriptor = makeUserDescriptor( dd, tc, userName, password );

            dd.updateUser( userDescriptor, tc );
           
        } catch (StandardException se) { throw PublicAPI.wrapStandardException(se); }
    }
   
    /**
 
View Full Code Here

Examples of org.apache.derby.iapi.sql.dictionary.DataDictionary.updateUser()

            */
            dd.startWriting(lcc);

            UserDescriptor  userDescriptor = makeUserDescriptor( dd, tc, userName, password );

            dd.updateUser( userDescriptor, tc );
           
        } catch (StandardException se) { throw PublicAPI.wrapStandardException(se); }
    }
   
    /**
 
View Full Code Here

Examples of org.apache.derby.iapi.sql.dictionary.DataDictionary.updateUser()

            */
            dd.startWriting(lcc);

            UserDescriptor  userDescriptor = makeUserDescriptor( dd, tc, userName, password );

            dd.updateUser( userDescriptor, tc );
           
        } catch (StandardException se) { throw PublicAPI.wrapStandardException(se); }
    }
   
    /**
 
View Full Code Here

Examples of org.apache.james.user.api.UsersRepository.updateUser()

        JamesUser user = (JamesUser) users.getUserByName(username);
        if (user == null) {
            response = new RemoteManagerResponse("No such user " + username);
        } else if (user.getForwarding()){
            user.setForwarding(false);
            users.updateUser(user);
            StringBuilder responseBuffer =
                new StringBuilder(64)
                        .append("Forward for ")
                        .append(username)
                        .append(" unset");
View Full Code Here

Examples of org.apache.james.user.api.UsersRepository.updateUser()

        JamesUser user = (JamesUser) users.getUserByName(username);
        if (user == null) {
            response = new RemoteManagerResponse("No such user " + username);
        } else if (user.getAliasing()){
            user.setAliasing(false);
            users.updateUser(user);
            StringBuilder responseBuffer =
                new StringBuilder(64)
                        .append("Alias for ")
                        .append(username)
                        .append(" unset");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.