argos/dmp-backend/src/main/java/eu/eudat/entities/DataEntity.java

8 lines
110 B
Java
Raw Normal View History

2017-12-15 00:01:26 +01:00
package eu.eudat.entities;
2018-02-20 08:50:17 +01:00
public interface DataEntity<T,K> {
void update(T entity);
2018-02-20 08:50:17 +01:00
K getKeys();
}