I have the following interface:
public interface SingleRecordInterface { public void insert(T object); }
I have the abstract c
Change to the following:
public abstract class AbstractEntry implements SingleRecordInterface { }
and
public class SpecificEntry extends AbstractEntry { public void insert(SpecificEntryBean entry) { // stuff } }