137138139140141142143144145
@VisibleForTesting @PostConstruct final void init() { if (this.defaults == null) { this.defaults = new PYamlObject(Collections.<String, Object>emptyMap(), getAttributeName()); } validateParamObject(getValueType(), Sets.<Class>newHashSet()); }
157158159160161162163
public final PObject getDefaultValue() { return this.defaults; } public final void setDefault(final Map<String, Object> defaultValue) { this.defaults = new PYamlObject(defaultValue, getAttributeName()); }