de.factoryfx.data.storage.NewScheduledDataMetadata Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of data Show documentation
Show all versions of data Show documentation
factoryfx dependency injection framework
The newest version!
package de.factoryfx.data.storage;
import com.fasterxml.jackson.annotation.JsonCreator;
import java.time.LocalDateTime;
/**
* metadata for a new factory update
*/
public class NewScheduledDataMetadata {
public NewDataMetadata newDataMetadata;
public LocalDateTime scheduled;
@JsonCreator
public NewScheduledDataMetadata(){
}
public NewScheduledDataMetadata(NewDataMetadata newDataMetadata, LocalDateTime scheduled){
this.newDataMetadata=newDataMetadata;
this.scheduled = scheduled;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy