@Override public void setInstance(final ReportletConf instance) { this.serializedInstance = instance == null ? null : POJOHelper.serialize(instance); }
@Override public ReportletConf getInstance() { return serializedInstance == null ? null : POJOHelper.deserialize(serializedInstance, ReportletConf.class); }