Package com.google.code.lightssh.project.security.service

Examples of com.google.code.lightssh.project.security.service.LoginAccountManager


   */
  public static List<LoginAccount> listByIds(String ids ){
    if( StringUtils.isEmpty(ids) )
      return null;
   
    LoginAccountManager bean = (LoginAccountManager)
        SpringContextHelper.getBean(LOGINACCOUNT_MANAGER_NAME);
   
    return bean.listByIds( ids.split(",") );
  }
View Full Code Here


  /**
   * 初始系统账户
   */
  private void initRootUser( ){
        try{
          LoginAccountManager laMgr = (LoginAccountManager)
            SpringContextHelper.getBean("loginAccountManager");
          laMgr.initLoginAccount();
        }catch( Exception e ){
          log.error( e.getMessage() );
        }
  }
View Full Code Here

TOP

Related Classes of com.google.code.lightssh.project.security.service.LoginAccountManager

Copyright © 2018 www.massapicom. 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.