public class ObjectStore { // variable of Object type private Object data; public ObjectStore(Object data) { this.data = data; } // method that return Object type variable public Object getData() { return this.data; } }