com.airlenet.repo.domain.Defaultable 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
* @创建时间 2017年4月23日 下午10:06:17
*/
public interface Defaultable {
public static final String PROPERTY_NAME = "defaulted";
public boolean isDefaulted();
public void setDefaulted(boolean defaulted);
/**
* 标识为默认
*/
public void markDefaulted();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy