Uses of Class
org.jgroups.auth.AuthToken
-
Packages that use AuthToken Package Description org.jgroups.auth org.jgroups.protocols Provides implementations of transport protocols which are responsible for sending and receiving messages to/from the network. -
-
Uses of AuthToken in org.jgroups.auth
Subclasses of AuthToken in org.jgroups.auth Modifier and Type Class Description class
FixedMembershipToken
The FixedMemberShipToken object predefines a list of IP addresses and ports that can join the group.class
Krb5Token
JGroups AuthToken Class to for Kerberos v5 authentication.class
MD5Token
Deprecated.Consult the manual for a description of why this token was deprecatedclass
RegexMembership
Matches the IP address or logical name of a joiner against a regular expression and accepts or rejects based on pattern matchingclass
SimpleToken
Deprecated.Consult the manual for a description of why this token was deprecatedclass
X509Token
This is an example of using a preshared token that is encrypted using an X509 certificate for authentication purposes.Methods in org.jgroups.auth with parameters of type AuthToken Modifier and Type Method Description abstract boolean
AuthToken. authenticate(AuthToken token, Message msg)
This method should be implemented to perform the actual authentication of joining members.boolean
FixedMembershipToken. authenticate(AuthToken token, Message msg)
Check if I'm in memberList, tooboolean
Krb5Token. authenticate(AuthToken token, Message msg)
boolean
MD5Token. authenticate(AuthToken token, Message msg)
Deprecated.boolean
RegexMembership. authenticate(AuthToken token, Message msg)
boolean
SimpleToken. authenticate(AuthToken token, Message msg)
Deprecated.boolean
X509Token. authenticate(AuthToken token, Message msg)
-
Uses of AuthToken in org.jgroups.protocols
Fields in org.jgroups.protocols declared as AuthToken Modifier and Type Field Description protected AuthToken
AUTH. auth_token
Used on the coordinator to authentication joining member requests againstprotected AuthToken
AuthHeader. token
Methods in org.jgroups.protocols that return AuthToken Modifier and Type Method Description AuthToken
AUTH. getAuthToken()
AuthToken
AuthHeader. getToken()
protected static AuthToken
AuthHeader. readAuthToken(java.io.DataInput in)
AuthToken
AuthHeader. token()
Methods in org.jgroups.protocols with parameters of type AuthToken Modifier and Type Method Description AUTH
AUTH. setAuthToken(AuthToken token)
void
AuthHeader. setToken(AuthToken token)
protected static int
AuthHeader. sizeOf(AuthToken tok)
AuthHeader
AuthHeader. token(AuthToken token)
protected static void
AuthHeader. writeAuthToken(java.io.DataOutput out, AuthToken tok)
Constructors in org.jgroups.protocols with parameters of type AuthToken Constructor Description AuthHeader(AuthToken token)
-