[java-identity-provider COMMIT] /trunk/idp-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resol...
noreply at shibboleth.net
noreply at shibboleth.net
Mon Feb 9 08:13:14 EST 2015
Author: rdw
Date: Mon Feb 9 08:13:14 2015
New Revision: 7329
URL: http://svn.shibboleth.net/view/java-identity-provider?rev=7329&view=rev
Log:
CheckStyle
Modified:
trunk/idp-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resolver/spring/dc/AbstractDataConnectorParser.java
Modified: trunk/idp-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resolver/spring/dc/AbstractDataConnectorParser.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resolver/spring/dc/AbstractDataConnectorParser.java?rev=7329&r1=7328&r2=7329&view=diff
==============================================================================
--- trunk/idp-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resolver/spring/dc/AbstractDataConnectorParser.java (original)
+++ trunk/idp-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resolver/spring/dc/AbstractDataConnectorParser.java Mon Feb 9 08:13:14 2015
@@ -95,7 +95,7 @@
/** {@inheritDoc} */
@Override protected final void doParse(@Nonnull final Element config, @Nonnull final ParserContext parserContext,
@Nonnull final BeanDefinitionBuilder builder) {
-
+
super.doParse(config, parserContext, builder);
final List<Element> failoverConnector =
@@ -112,7 +112,7 @@
builder.setInitMethodName(null);
builder.setDestroyMethodName(null);
if (config.hasAttributeNS(null, ATTR_SPRING_RESOURCE)) {
- final String[] resources = config.getAttributeNS(null, ATTR_SPRING_RESOURCE).split(";");
+ final String[] resources = config.getAttributeNS(null, ATTR_SPRING_RESOURCE).split(";");
log.debug("{} native configuration from {}", getLogPrefix(), resources);
builder.addPropertyValue("resources", resources);
} else {
@@ -123,10 +123,12 @@
if (config.hasAttribute(ATTR_FACTORY_POSTPROCESSORS_REF)) {
final String factoryPostProcessorsRef = config.getAttributeNS(null, ATTR_FACTORY_POSTPROCESSORS_REF);
log.debug("{} Factory Bean Post Processors {}", getLogPrefix(), factoryPostProcessorsRef);
- builder.addPropertyReference("beanFactoryPostProcessors",factoryPostProcessorsRef);
+ builder.addPropertyReference("beanFactoryPostProcessors", factoryPostProcessorsRef);
} else {
- log.debug("{} Adding default Factory Bean Post Processors shibboleth.PropertySourcesPlaceholderConfigurer", getLogPrefix());
- builder.addPropertyReference("beanFactoryPostProcessors","shibboleth.PropertySourcesPlaceholderConfigurer");
+ log.debug("{} Adding default Factory Bean Post Processors "
+ + "shibboleth.PropertySourcesPlaceholderConfigurer", getLogPrefix());
+ builder.addPropertyReference("beanFactoryPostProcessors",
+ "shibboleth.PropertySourcesPlaceholderConfigurer");
}
if (config.hasAttribute(ATTR_POSTPROCESSORS_REF)) {
final String postProcessorsRef = config.getAttributeNS(null, ATTR_POSTPROCESSORS_REF);
@@ -139,8 +141,9 @@
}
/**
- * Parse the supplied {@link Element} as a legacy format and populate the supplied
- * {@link BeanDefinitionBuilder} as required.
+ * Parse the supplied {@link Element} as a legacy format and populate the supplied {@link BeanDefinitionBuilder} as
+ * required.
+ *
* @param element the XML element being parsed
* @param parserContext the object encapsulating the current state of the parsing process
* @param builder used to define the {@code BeanDefinition}
More information about the commits
mailing list