1 2 3 4 5 6
package de.scrum_master.app; public interface IEntityController<T> { void setEntity(T entity); T getEntity(); }