com.frameworkset.common.bean.StatusConst Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bboss-util Show documentation
Show all versions of bboss-util Show documentation
bboss is a j2ee framework include aop/ioc,mvc,persistent,taglib,rpc,event ,bean-xml serializable and so on.http://www.bbossgroups.com
/*
* Created on 2004-6-9
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package com.frameworkset.common.bean;
import java.io.Serializable;
/**
* @author biaoping.yin
* 操作标志常数类:
*
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
public final class StatusConst implements Serializable
{
/**
* 删除状态标志
*/
public final static int DELETE = 0;
/**
* 更新状态标识
*/
public final static int UPDATE = 1;
/**
* 添加状态标识
*/
public final static int ADD = 2;
/**
* 缓冲状态标识
*/
public final static int CACHE = 3;
}