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

com.daioware.processManagement.ScheduledDate Maven / Gradle / Ivy

package com.daioware.processManagement;

import java.util.Date;

public class ScheduledDate {
	private Date date;
	private boolean executed;
	
	public ScheduledDate(Date date) {
		this(date,false);
	}
	public ScheduledDate(Date date, boolean executed) {
		setDate(date);
		setExecuted(executed);
	}
	public Date getDate() {
		return date;
	}
	public void setDate(Date date) {
		this.date = date;
	}
	public boolean isExecuted() {
		return executed;
	}
	public void setExecuted(boolean executed) {
		this.executed = executed;
	}
	
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy