aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs183/442425/EntityMongoController.java
blob: 194d1777df7e64eb9558983bdaeeee9ab6399e40 (plain)
1
2
3
4
5
6
7
public class EntityMongoController<T> implements IEntityController<T> {
  private T entity;

  public void setEntity(T entity) { this.entity = entity; }

  public T getEntity() { return entity; }
}