Package org.opensaml.xmlsec
Class WhitelistBlacklistParameters
- java.lang.Object
-
- org.opensaml.xmlsec.AlgorithmPolicyParameters
-
- org.opensaml.xmlsec.WhitelistBlacklistParameters
-
- Direct Known Subclasses:
DecryptionParameters,SignatureValidationParameters
@Deprecated(forRemoval=true, since="4.1.0") public class WhitelistBlacklistParameters extends AlgorithmPolicyParameters
Deprecated, for removal: This API element is subject to removal in a future version.The whitelist and blacklist algorithm parameters.Replace with
AlgorithmPolicyParameters.
-
-
Constructor Summary
Constructors Constructor Description WhitelistBlacklistParameters()Deprecated, for removal: This API element is subject to removal in a future version.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Collection<String>getBlacklistedAlgorithms()Deprecated, for removal: This API element is subject to removal in a future version.Get the list of blacklisted algorithm URI's.Collection<String>getWhitelistedAlgorithms()Deprecated, for removal: This API element is subject to removal in a future version.Get the list of whitelisted algorithm URI's.voidsetBlacklistedAlgorithms(Collection<String> uris)Deprecated, for removal: This API element is subject to removal in a future version.Set the list of blacklisted algorithm URI's.voidsetWhitelistedAlgorithms(Collection<String> uris)Deprecated, for removal: This API element is subject to removal in a future version.Set the list of whitelisted algorithm URI's.-
Methods inherited from class org.opensaml.xmlsec.AlgorithmPolicyParameters
getExcludedAlgorithms, getIncludedAlgorithms, setExcludedAlgorithms, setIncludedAlgorithms
-
-
-
-
Method Detail
-
getWhitelistedAlgorithms
@Nonnull @NonnullElements @NotLive @Unmodifiable public Collection<String> getWhitelistedAlgorithms()
Deprecated, for removal: This API element is subject to removal in a future version.Get the list of whitelisted algorithm URI's.- Returns:
- the list of algorithms
-
setWhitelistedAlgorithms
public void setWhitelistedAlgorithms(@Nullable Collection<String> uris)Deprecated, for removal: This API element is subject to removal in a future version.Set the list of whitelisted algorithm URI's.- Parameters:
uris- the list of algorithms
-
getBlacklistedAlgorithms
@Nonnull @NonnullElements @NotLive @Unmodifiable public Collection<String> getBlacklistedAlgorithms()
Deprecated, for removal: This API element is subject to removal in a future version.Get the list of blacklisted algorithm URI's.- Returns:
- the list of algorithms
-
setBlacklistedAlgorithms
public void setBlacklistedAlgorithms(@Nonnull @NonnullElements Collection<String> uris)
Deprecated, for removal: This API element is subject to removal in a future version.Set the list of blacklisted algorithm URI's.- Parameters:
uris- the list of algorithms
-
-