Package com.google.code.lightssh.project.util.constant

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


    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

Related Classes of com.google.code.lightssh.project.util.constant.AuditStatus

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.