Uses of Interface
org.restlet.security.Verifier
-
Packages that use Verifier Package Description org.restlet Core classes of the API.org.restlet.ext.crypto Support for cryptography including Amazon S3 and Windows Azure client authentication.org.restlet.ext.crypto.internal org.restlet.ext.jaas Support for JAAS authentication and authorization framework.org.restlet.security Classes related to security. -
-
Uses of Verifier in org.restlet
Fields in org.restlet declared as Verifier Modifier and Type Field Description private VerifierContext. defaultVerifierThe verifier that can check the validity of user/secret couples based on Restlet default authorization model.Methods in org.restlet that return Verifier Modifier and Type Method Description VerifierContext. getDefaultVerifier()Returns a verifier that can check the validity of the credentials associated to a request.Methods in org.restlet with parameters of type Verifier Modifier and Type Method Description voidContext. setDefaultVerifier(Verifier verifier)Sets a local verifier that can check the validity of user/secret couples based on Restlet default authorization model. -
Uses of Verifier in org.restlet.ext.crypto
Classes in org.restlet.ext.crypto that implement Verifier Modifier and Type Class Description classDigestVerifier<T extends SecretVerifier>Wrapper verifier that can verify digested secrets.Methods in org.restlet.ext.crypto with parameters of type Verifier Modifier and Type Method Description voidAwsAuthenticator. setVerifier(Verifier verifier)Sets the internal verifier.voidDigestAuthenticator. setVerifier(Verifier verifier)Set the internal verifier.Constructors in org.restlet.ext.crypto with parameters of type Verifier Constructor Description AwsAuthenticator(Context context, boolean optional, java.lang.String realm, Verifier verifier)Creates a new HttpAwsS3Authenticator instance. -
Uses of Verifier in org.restlet.ext.crypto.internal
Classes in org.restlet.ext.crypto.internal that implement Verifier Modifier and Type Class Description classAwsVerifierWrapped verifier that can verify HTTP requests utilizing the Amazon S3 authentication scheme.classHttpDigestVerifierVerifier for the HTTP DIGEST authentication scheme. -
Uses of Verifier in org.restlet.ext.jaas
Classes in org.restlet.ext.jaas that implement Verifier Modifier and Type Class Description classJaasVerifierVerifier that leverages the JAAS pluggable authentication mechanism. -
Uses of Verifier in org.restlet.security
Classes in org.restlet.security that implement Verifier Modifier and Type Class Description classLocalVerifierVerifier that can locally retrieve the secrets.classMapVerifierVerifier that stores its local secrets in a map indexed by the identifier.private classMemoryRealm.DefaultVerifierVerifier based on the default security model.classSecretVerifierVerifier of identifier/secret couples.Fields in org.restlet.security declared as Verifier Modifier and Type Field Description private VerifierChallengeAuthenticator. verifierThe credentials verifier.private VerifierRealm. verifierThe verifier that can check the validity of the user credentials associated to a request.Methods in org.restlet.security that return Verifier Modifier and Type Method Description VerifierChallengeAuthenticator. getVerifier()Returns the credentials verifier.VerifierRealm. getVerifier()Returns a verifier that can check the validity of the credentials associated to a request.Methods in org.restlet.security with parameters of type Verifier Modifier and Type Method Description voidChallengeAuthenticator. setVerifier(Verifier verifier)Sets the credentials verifier.voidRealm. setVerifier(Verifier verifier)Sets a verifier that can check the validity of the credentials associated to a request.Constructors in org.restlet.security with parameters of type Verifier Constructor Description ChallengeAuthenticator(Context context, boolean optional, ChallengeScheme challengeScheme, java.lang.String realm, Verifier verifier)Constructor.Realm(Verifier verifier, Enroler enroler)Constructor.
-