Package com.google.code.lightssh.project.log.entity

Examples of com.google.code.lightssh.project.log.entity.LoginLog


 
  public void login(Date date,String ip, String username ) {
    if( username == null )
      return;
   
    LoginLog log = new LoginLog();
    log.setOperator( username );
    log.setIp(ip);
   
    dao.create( log )
  }
View Full Code Here

TOP

Related Classes of com.google.code.lightssh.project.log.entity.LoginLog

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.