[java-opensaml] branch master updated: OSJ-294: Criterion check bug in AbstractPipelineHttpSOAPClient
Brent Putman
putmanb at georgetown.edu
Fri Jan 17 11:20:22 EST 2020
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=4a54db2e7b692e842d071ed1cb45042be1cc61f3
The following commit(s) were added to refs/heads/master by this push:
new 4a54db2 OSJ-294: Criterion check bug in AbstractPipelineHttpSOAPClient
4a54db2 is described below
commit 4a54db2e7b692e842d071ed1cb45042be1cc61f3
Author: Brent Putman <putmanb at georgetown.edu>
AuthorDate: Fri Jan 17 11:17:32 2020 -0500
OSJ-294: Criterion check bug in AbstractPipelineHttpSOAPClient
---
.../org/opensaml/soap/client/http/AbstractPipelineHttpSOAPClient.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/opensaml-soap-api/src/main/java/org/opensaml/soap/client/http/AbstractPipelineHttpSOAPClient.java b/opensaml-soap-api/src/main/java/org/opensaml/soap/client/http/AbstractPipelineHttpSOAPClient.java
index 69284a2..5327f13 100644
--- a/opensaml-soap-api/src/main/java/org/opensaml/soap/client/http/AbstractPipelineHttpSOAPClient.java
+++ b/opensaml-soap-api/src/main/java/org/opensaml/soap/client/http/AbstractPipelineHttpSOAPClient.java
@@ -422,7 +422,7 @@ public abstract class AbstractPipelineHttpSOAPClient
criteriaSet.addAll(resolved);
}
}
- if (!criteriaSet.contains(UsageType.class)) {
+ if (!criteriaSet.contains(UsageCriterion.class)) {
criteriaSet.add(new UsageCriterion(UsageType.SIGNING));
}
return criteriaSet;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list