blob: b9d957afc39fa7b7ea4a17022b9b333042a1c00b [file] [log] [blame]
package backtype.storm.utils;
public class MutableObject {
Object o = null;
public MutableObject() {
}
public MutableObject(Object o) {
this.o = o;
}
public void setObject(Object o) {
this.o = o;
}
public Object getObject() {
return o;
}
}