Package org.restlet.engine.header

Examples of org.restlet.engine.header.ChallengeRequestReader


    public static List<ChallengeRequest> parseRequest(Response response,
            String header, Series<Parameter> httpHeaders) {
        List<ChallengeRequest> result = new ArrayList<ChallengeRequest>();

        if (header != null) {
            result = new ChallengeRequestReader(header).readValues();
            for (ChallengeRequest cr : result) {
                // Give a chance to the authenticator helper to do further
                // parsing
                AuthenticatorHelper helper = Engine.getInstance().findHelper(
                        cr.getScheme(), true, false);
View Full Code Here

TOP

Related Classes of org.restlet.engine.header.ChallengeRequestReader

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.