blob: 345f32043a4f4a81c23c27e9120137c23a74bb39 (
plain)
1
2
3
4
5
6
7
8
|
package de.scrum_master.app;
public class EntityMongoController<T> implements IEntityController<T> {
private T entity;
public void setEntity(T entity) { this.entity = entity; }
public T getEntity() { return entity; }
}
|