Examples of RoleAudit


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

  public void process(ExecutionType type, String procDefKey,
      String procInstId, String bizKey) {
   
    RoleChange rc = this.roleChangeManager.get(bizKey);
   
    RoleAudit roleAudit = new RoleAudit();
    roleAudit.setRoleChange(rc);//关联角色变更
   
    roleAudit.setUser( null );
    boolean passed = ExecutionType.SUBMIT.equals(type);
    roleAudit.setResult(passed?AuditResult.LAST_AUDIT_PASSED:AuditResult.LAST_AUDIT_REJECT);
   
    this.audit(roleAudit, rc);
  }
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.