@Override
public Attributes getObject() throws Exception {
AttributesBuilder ab = new AttributesBuilder().setType(type).setId(id).setAttrSetDao(dao).setCommonRequestArgs(cra);
if (refreshCacheSeconds != null) {
ab.refreshAfter(refreshCacheSeconds, TimeUnit.SECONDS);
}
return ab.build();
}
@Override