[java-identity-provider COMMIT] in /trunk/idp-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/re...
noreply at shibboleth.net
noreply at shibboleth.net
Thu Oct 3 10:49:56 EDT 2013
Author: rdw
Date: Thu Oct 3 10:49:55 2013
New Revision: 4819
URL: http://svn.shibboleth.net/view/java-identity-provider?rev=4819&view=rev
Log:
IDP-316 Pass type checking. In this case by turning said checking off becasue of impedance mismatch with Spring definitions.
Modified:
trunk/idp-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resolver/spring/AttributeResolverService.java
trunk/idp-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resolver/spring/AttributeResolverServiceParser.java
Modified: trunk/idp-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resolver/spring/AttributeResolverService.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resolver/spring/AttributeResolverService.java?rev=4819&r1=4818&r2=4819&view=diff
==============================================================================
--- trunk/idp-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resolver/spring/AttributeResolverService.java (original)
+++ trunk/idp-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resolver/spring/AttributeResolverService.java Thu Oct 3 10:49:55 2013
@@ -72,7 +72,7 @@
// TODO probably wrong
/** {@inheritDoc} */
- protected void doPreStart(HashMap context) throws ServiceException {
+ protected void doPreStart(@SuppressWarnings("rawtypes") HashMap context) throws ServiceException {
// TODO do we have to init resources here ?
log.debug("getServiceConfigurations() '{}'", getServiceConfigurations());
Modified: trunk/idp-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resolver/spring/AttributeResolverServiceParser.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resolver/spring/AttributeResolverServiceParser.java?rev=4819&r1=4818&r2=4819&view=diff
==============================================================================
--- trunk/idp-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resolver/spring/AttributeResolverServiceParser.java (original)
+++ trunk/idp-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resolver/spring/AttributeResolverServiceParser.java Thu Oct 3 10:49:55 2013
@@ -32,6 +32,7 @@
"ShibbolethAttributeResolver");
/** {@inheritDoc} */
+ @SuppressWarnings({"rawtypes", "unchecked"})
protected Class getBeanClass(Element element) {
return AttributeResolverService.class;
}
More information about the commits
mailing list