com.airlenet.repo.domain.Lockedable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of play-repo Show documentation
Show all versions of play-repo Show documentation
The Repository of Play Framework.
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