Examples of AuditStatus


Examples of com.google.code.lightssh.project.util.constant.AuditStatus

      getDao().create( account );
    }
   
    //变更记录
    String remark = null;
    AuditStatus status = account.getStatus();
    EntityChange.Type type = EntityChange.Type.CREATE;
    if( AuditStatus.NEW.equals( status )){
      type = EntityChange.Type.CREATE;
    }else if(AuditStatus.EFFECTIVE.equals(status) ){
      type = EntityChange.Type.UPDATE;
View Full Code Here

Examples of com.google.code.lightssh.project.util.constant.AuditStatus

    if( !db_role.isEffective() )//有效状态不能直接发起变更
      save( db_role );
     
    //变更记录
    String remark = null;
    AuditStatus status = db_role.getStatus();
    EntityChange.Type type = EntityChange.Type.CREATE;
    if( AuditStatus.NEW.equals( status )){
      type = EntityChange.Type.CREATE;
    }else if(AuditStatus.EFFECTIVE.equals(status) ){
      type = EntityChange.Type.UPDATE;
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.