public Object getAttribute()

in src/main/java/org/apache/sling/i18n/impl/I18NFilter.java [282:290]


        public Object getAttribute(final String name) {
            if (ResourceBundleProvider.BUNDLE_REQ_ATTR.equals(name)) {
                if (this.resourceBundle == null && this.bundleProvider != null) {
                    this.resourceBundle = this.bundleProvider.getResourceBundle(this.getLocale());
                }
                return this.resourceBundle;
            }
            return super.getAttribute(name);
        }