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

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

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

import java.io.Serializable;
import java.util.Date;

public class BaseTimeDependent implements TimeDependent, Serializable {

	private Date startDate;
	private Date endDate;
	
	public BaseTimeDependent() {
		super();
	}

	public BaseTimeDependent( final Date startDate, final Date endDate ) {
		super();
		this.startDate = startDate;
		this.endDate = endDate;
	}
	
	@Override
	public Date getStartDate() {
		return startDate;
	}

	public void setStartDate( final Date d ) {
		this.startDate = d;
	}
	
	@Override
	public Date getEndDate() {
		return endDate;
	}
	
	public void setEndDate( final Date d ) {
		this.endDate = d;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy