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 MatchRuleMatchRule. ALLThe root rule which matches all URIs.Methods in org.wildfly.security.auth.client that return MatchRule Modifier and Type Method Description MatchRuleMatchRule. 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.MatchRuleMatchRule. matchAddress(InetAddress inetAddress)Create a new rule which is the same as this rule, but also matches the given Internet address.MatchRuleMatchRule. matchAnyUser()Create a new rule which is the same as this rule, but matches URIs with or without user info.MatchRuleMatchRule. matchHost(String hostSpec)Create a new rule which is the same as this rule, but also matches the given host name.MatchRuleMatchRule. matchLocalSecurityDomain(String name)Create a new rule which is the same as this rule, but also matches the given security domain.MatchRuleMatchRule. 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.MatchRuleMatchRule. matchNoUser()Create a new rule which is the same as this rule, but only matches URIs with no user info.MatchRuleMatchRule. matchPath(String pathSpec)Create a new rule which is the same as this rule, but also matches the given path name.MatchRuleMatchRule. matchPort(int port)Create a new rule which is the same as this rule, but also matches the given port number.MatchRuleMatchRule. matchProtocol(String protoName)Create a new rule which is the same as this rule, but also matches the given protocol (scheme) name.MatchRuleMatchRule. matchUrnName(String name)Create a new rule which is the same as this rule, but also matches the given URN name.MatchRuleMatchRule. 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 booleanMatchRule. equals(MatchRule other)Determine whether this rule is equal to another.AuthenticationContextAuthenticationContext. 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.AuthenticationContextAuthenticationContext. 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.AuthenticationContextAuthenticationContext. 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 theidxparameter.AuthenticationContextAuthenticationContext. 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.AuthenticationContextAuthenticationContext. 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 theidxparameter.AuthenticationContextAuthenticationContext. 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.
-