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

Examples of com.google.code.lightssh.project.security.entity.LoginAccountAudit


  public void process(ExecutionType type, String procDefKey,
      String procInstId, String bizKey) {
   
    LoginAccountChange lac = this.loginAccountChangeManager.get(bizKey);
   
    LoginAccountAudit accAudit = new LoginAccountAudit();
    accAudit.setLoginAccountChange( lac );//关联变更
   
    accAudit.setUser( null );
    boolean passed = ExecutionType.SUBMIT.equals(type);
    accAudit.setResult(passed?AuditResult.LAST_AUDIT_PASSED:AuditResult.LAST_AUDIT_REJECT);
   
    this.audit(accAudit, lac);
  }
View Full Code Here

TOP

Related Classes of com.google.code.lightssh.project.security.entity.LoginAccountAudit

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.