[java-opensaml] branch master updated: Add Spring-friendly @ParameterName to ctor arg.
Brent Putman
putmanb at georgetown.edu
Mon Oct 1 22:24:24 EDT 2018
This is an automated email from the git hooks/post-receive script.
putmanb pushed a commit to branch master
in repository java-opensaml.
View the commit online:
http://git.shibboleth.net/view/?p=java-opensaml.git;a=commit;h=7cbf74e3bf585c20abad42d3d7dbb0665ae78ce9
The following commit(s) were added to refs/heads/master by this push:
new 7cbf74e Add Spring-friendly @ParameterName to ctor arg.
7cbf74e is described below
commit 7cbf74e3bf585c20abad42d3d7dbb0665ae78ce9
Author: Brent Putman <putmanb at georgetown.edu>
AuthorDate: Mon Oct 1 21:26:23 2018 -0400
Add Spring-friendly @ParameterName to ctor arg.
---
.../saml/metadata/resolver/index/impl/EndpointMetadataIndex.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/opensaml-saml-impl/src/main/java/org/opensaml/saml/metadata/resolver/index/impl/EndpointMetadataIndex.java b/opensaml-saml-impl/src/main/java/org/opensaml/saml/metadata/resolver/index/impl/EndpointMetadataIndex.java
index 4c76692..42bc973 100644
--- a/opensaml-saml-impl/src/main/java/org/opensaml/saml/metadata/resolver/index/impl/EndpointMetadataIndex.java
+++ b/opensaml-saml-impl/src/main/java/org/opensaml/saml/metadata/resolver/index/impl/EndpointMetadataIndex.java
@@ -243,7 +243,8 @@ public class EndpointMetadataIndex implements MetadataIndex {
*
* @param indexableTypes a map controlling the types of endpoints to index
*/
- public DefaultEndpointSelectionPredicate(@Nonnull final Map<QName, Set<QName>> indexableTypes) {
+ public DefaultEndpointSelectionPredicate(
+ @ParameterName(name="indexableTypes") @Nonnull final Map<QName, Set<QName>> indexableTypes) {
endpointTypes = Constraint.isNotNull(indexableTypes, "Indexable endpoint types map was null");
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list