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

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

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