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

dev.soffa.foundation.data.EntityModel Maven / Gradle / Ivy

There is a newer version: 0.17.31
Show newest version
package dev.soffa.foundation.data;

import java.util.Date;

public interface EntityModel extends EntityLifecycle {

    String getId();

    void setId(String value);

    default Date getCreated() {
        return null;
    }

    default void setCreated(Date date) {
        // Default implementation
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy