public class GenericStore { private Object data; // variable of T type public GenericStore(Object data) { this.data = data; } public Object getData() // returns T type variable { return this.data; } }