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

eu.europa.esig.dss.util.TimeDependent Maven / Gradle / Ivy

There is a newer version: 6.0.d4j.2
Show newest version
package eu.europa.esig.dss.util;

import java.util.Date;

/**
 * Valid in a specific time interval.
 * @author jdvorak
 */
public interface TimeDependent {
	
	/**
	 * The start of the validity period. 
	 * It shall never be null.
	 */
	Date getStartDate();

	/**
	 * The end of the validity period.
	 * Null indicates that this is the last known case.
	 * If not null, it is assumed that the end date is not older than the start date.
	 */
	Date getEndDate();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy