Uses of Interface
org.jcsp.net.security.UserID
-
Packages that use UserID Package Description org.jcsp.net.security This package contains the files specifically for link security implementing various authentication schemes. -
-
Uses of UserID in org.jcsp.net.security
Classes in org.jcsp.net.security that implement UserID Modifier and Type Class Description private static class
SimpleSecurityAuthority.SimpleUserID
Represents the user ID for this authority.Fields in org.jcsp.net.security declared as UserID Modifier and Type Field Description private UserID
SimpleSecurityAuthority.SimpleUserToken. uID
Methods in org.jcsp.net.security that return UserID Modifier and Type Method Description UserID
SimpleSecurityAuthority. createUserID(java.lang.String username)
Creates and returns a user ID valid for this authority that represents the given user name.UserID
SimpleSecurityAuthority.SimpleUserToken. getUserID()
UserID
UserToken. getUserID()
Returns the ID of the logged on user.Methods in org.jcsp.net.security with parameters of type UserID Modifier and Type Method Description UserToken
SimpleSecurityAuthority. createUserToken(UserID user)
Creates and returns an authentication token valid for this authority that represents the given user name.void
SecurityAuthority. denyUserAccess(UserID u)
Removes a user ID from the set of users considered by this authority to create valid responses to challenges.void
SimpleSecurityAuthority. denyUserAccess(UserID u)
Removes a user from the set of permitted users.void
SecurityAuthority. permitUserAccess(UserID u)
Adds a user ID to the set of users considered by this authority to create valid responses to challenges.void
SimpleSecurityAuthority. permitUserAccess(UserID u)
Adds a user to the set of permitted users.Constructors in org.jcsp.net.security with parameters of type UserID Constructor Description SimpleUserToken(UserID uID)
-