Package org.wildfly.security.keystore
Class AliasFilter
java.lang.Object
org.wildfly.security.keystore.AliasFilter
- Author:
- Darran Lofthouse
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic AliasFilterfromString(String filterString) Create an AliasFilter based on a filterString in one of the following formats: - alias1,alais2,alias3 - Only the aliases listed are accepted ALL:-alias1:-alias2:-alias3 - All aliases allowed except those listed. NONE:+alias1:+alias2:+alais3 - Only the aliases listed are accepted Note: For ambiguous definitions aliases are evaluated against the filter string from right to left with the first match winning, e.g.abstract boolean
-
Field Details
-
previous
-
ALL
-
NONE
-
-
Method Details
-
add
-
remove
-
test
-
fromString
Create an AliasFilter based on a filterString in one of the following formats: -- alias1,alais2,alias3 - Only the aliases listed are accepted
- ALL:-alias1:-alias2:-alias3 - All aliases allowed except those listed.
- NONE:+alias1:+alias2:+alais3 - Only the aliases listed are accepted
- ALL:-alias1:+alias1 - alias1 is an accepted alias.
- Parameters:
filterString-- Returns:
-