/** * Returns whether this bean is important. * * @return whether this bean is important */ public boolean isImportant() { return BooleanUtils.toBoolean(important); }
/** * Returns whether this bean is to be lazily initialized. * * @return true, if this bean is to be lazily initialized */ public boolean isLazyInit() { return BooleanUtils.toBoolean(lazyInit); }