
org.beangle.commons.entity.TemporalAt Maven / Gradle / Ivy
The newest version!
/*
* Beangle, Agile Development Scaffold and Toolkits.
*
* Copyright © 2005, The Beangle Software.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*/
package org.beangle.commons.entity;
import java.util.Date;
/**
* 有时效性的实体
*
* 指有具体生效时间和失效时间的实体。一般生效时间不能为空,失效时间可以为空。
* 具体时间采用时间时间格式便于比对。
*/
public interface TemporalAt {
/**
* 获得生效时间
*/
Date getBeginAt();
/**
* 获得失效时间
*/
Date getEndAt();
/**
* 设置生效时间
*/
void setBeginAt(Date beginAt);
/**
* 设置失效时间
*/
void setEndAt(Date endAt);
}