Uses of Interface
org.wicketstuff.security.hive.authentication.Subject
-
Packages that use Subject Package Description org.wicketstuff.security.hive org.wicketstuff.security.hive.authentication org.wicketstuff.security.hive.authorization -
-
Uses of Subject in org.wicketstuff.security.hive
Methods in org.wicketstuff.security.hive with parameters of type Subject Modifier and Type Method Description protected BooleanBasicHive. cacheLookUp(Subject subject, Permission permission)Allows subclasses to retrieve previously cached results and thus speed up the check.protected BooleanSimpleCachingHive. cacheLookUp(Subject subject, Permission permission)protected voidBasicHive. cacheResult(Subject subject, Permission permission, boolean result)Allows subclasses to cache the result of a check and thus speed up this check the next time.protected voidSimpleCachingHive. cacheResult(Subject subject, Permission permission, boolean result)booleanBasicHive. hasPermission(Subject subject, Permission permission)booleanHive. hasPermission(Subject subject, Permission permission)Checks if the subject has the exact permission, or if the permission is implied by any of the subjects principals. -
Uses of Subject in org.wicketstuff.security.hive.authentication
Classes in org.wicketstuff.security.hive.authentication that implement Subject Modifier and Type Class Description classBaseSubjectDefault implementation of a Subject.Methods in org.wicketstuff.security.hive.authentication that return Subject Modifier and Type Method Description protected abstract SubjectUsernamePasswordContext. getSubject(String username, String password)Validates the username and password.abstract SubjectLoginContext. login()Perform a login.SubjectUsernamePasswordContext. login()The username and password are always null after this method returns.Methods in org.wicketstuff.security.hive.authentication with parameters of type Subject Modifier and Type Method Description voidLoginContext. notifyLogoff(Subject subject)Callback to take some action after a subject has been logged off. -
Uses of Subject in org.wicketstuff.security.hive.authorization
Methods in org.wicketstuff.security.hive.authorization with parameters of type Subject Modifier and Type Method Description booleanEverybodyPrincipal. implies(Subject subject)Always returns true.booleanPrincipal. implies(Subject subject)Even though a subject does not explicitly hold a principal, it may still be implied by the subject.booleanSimplePrincipal. implies(Subject subject)By default this principal does not imply any additional subjects.
-