Package org.jasig.cas.authentication

Examples of org.jasig.cas.authentication.UsernamePasswordCredential


     * Obtain credentials from the request.
     *
     * @return the credential
     */
    protected Credential obtainCredentials() {
        final UsernamePasswordCredential c = new UsernamePasswordCredential();
        final WebRequestDataBinder binder = new WebRequestDataBinder(c);
        final RestletWebRequest webRequest = new RestletWebRequest(getRequest());

        logFormRequest(new Form(getRequest().getEntity()));
        binder.bind(webRequest);
View Full Code Here

TOP

Related Classes of org.jasig.cas.authentication.UsernamePasswordCredential

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.