argos/dmp-backend/src/main/java/eu/eudat/models/DataModel.java

9 lines
243 B
Java

package eu.eudat.models;
import eu.eudat.entities.DataEntity;
public interface DataModel<T extends DataEntity> {
void fromDataModel(T entity) throws InstantiationException, IllegalAccessException;
T toDataModel() throws Exception;
}