All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.airlenet.repo.domain.Lockedable Maven / Gradle / Ivy

The newest version!
package com.airlenet.repo.domain;

/**
 * 可锁定的,如为true,则不可删除
 * 
 * @作者 airlenet
 * @博客 http://ken.whenling.com
 * @创建时间 2016年3月1日 下午6:09:00
 */
public interface Lockedable {
	public boolean isLocked();

	public void setLocked(boolean locked);

	/**
	 * 标识为已锁定
	 */
	public void markLocked();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy