Uses of Class
org.wildfly.security.auth.client.MatchRule
-
Packages that use MatchRule Package Description org.wildfly.security.auth.client Elytron Client enable remote clients to authenticate using Elytron. -
-
Uses of MatchRule in org.wildfly.security.auth.client
Fields in org.wildfly.security.auth.client declared as MatchRule Modifier and Type Field Description static MatchRule
MatchRule. ALL
The root rule which matches all URIs.Methods in org.wildfly.security.auth.client that return MatchRule Modifier and Type Method Description MatchRule
MatchRule. matchAbstractType(String typeName, String authorityName)
Create a new rule which is the same as this rule, but also matches the given abstract type and type authority.MatchRule
MatchRule. matchAddress(InetAddress inetAddress)
Create a new rule which is the same as this rule, but also matches the given Internet address.MatchRule
MatchRule. matchAnyUser()
Create a new rule which is the same as this rule, but matches URIs with or without user info.MatchRule
MatchRule. matchHost(String hostSpec)
Create a new rule which is the same as this rule, but also matches the given host name.MatchRule
MatchRule. matchLocalSecurityDomain(String name)
Create a new rule which is the same as this rule, but also matches the given security domain.MatchRule
MatchRule. matchNetwork(org.wildfly.common.net.CidrAddress cidrAddress)
Create a new rule which is the same as this rule, but also matches the given Internet network address.MatchRule
MatchRule. matchNoUser()
Create a new rule which is the same as this rule, but only matches URIs with no user info.MatchRule
MatchRule. matchPath(String pathSpec)
Create a new rule which is the same as this rule, but also matches the given path name.MatchRule
MatchRule. matchPort(int port)
Create a new rule which is the same as this rule, but also matches the given port number.MatchRule
MatchRule. matchProtocol(String protoName)
Create a new rule which is the same as this rule, but also matches the given protocol (scheme) name.MatchRule
MatchRule. matchUrnName(String name)
Create a new rule which is the same as this rule, but also matches the given URN name.MatchRule
MatchRule. matchUser(String userSpec)
Create a new rule which is the same as this rule, but also matches the given URI user info.Methods in org.wildfly.security.auth.client with parameters of type MatchRule Modifier and Type Method Description boolean
MatchRule. equals(MatchRule other)
Determine whether this rule is equal to another.AuthenticationContext
AuthenticationContext. replacing(int idx, MatchRule rule, AuthenticationConfiguration configuration)
Get a new authentication context which is the same as this one, but which replaces the rule and configuration at the given index with the given rule and configuration.AuthenticationContext
AuthenticationContext. replacingSslContext(int idx, MatchRule rule, SecurityFactory<SSLContext> sslContext)
Get a new authentication context which is the same as this one, but which replaces the rule and SSL context at the given index with the given rule and SSL context.AuthenticationContext
AuthenticationContext. with(int idx, MatchRule rule, AuthenticationConfiguration configuration)
Get a new authentication context which is the same as this one, but which includes the given rule and configuration inserted at the position of its list indicated by theidx
parameter.AuthenticationContext
AuthenticationContext. with(MatchRule rule, AuthenticationConfiguration configuration)
Get a new authentication context which is the same as this one, but which includes the given rule and configuration at the end of its list.AuthenticationContext
AuthenticationContext. withSsl(int idx, MatchRule rule, SecurityFactory<SSLContext> sslContext)
Get a new authentication context which is the same as this one, but which includes the given rule and SSL context inserted at the position of its list indicated by theidx
parameter.AuthenticationContext
AuthenticationContext. withSsl(MatchRule rule, SecurityFactory<SSLContext> sslContext)
Get a new authentication context which is the same as this one, but which includes the given rule and SSL context at the end of its SSL context list.
-