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

9 lines
243 B
Java
Raw Normal View History

2017-12-15 00:01:26 +01:00
package eu.eudat.models;
2017-12-15 00:01:26 +01:00
import eu.eudat.entities.DataEntity;
public interface DataModel<T extends DataEntity> {
void fromDataModel(T entity) throws InstantiationException, IllegalAccessException;
2018-01-17 13:03:51 +01:00
T toDataModel() throws Exception;
}