Package org.agorava.api.rest

Examples of org.agorava.api.rest.RequestTuner


        return mapperService;
    }

    @Override
    public Response sendSignedRequest(OAuthRequest request) {
        RequestTuner tuner;
        try {
            tuner = tunerProvider.get();
            tuner.tune(request);
        } catch (RuntimeException e) {
            LOGGER.log(Level.FINE, "No Tuner found for " + getSocialMediaName());
        } finally {
            signRequest(getAccessToken(), request);
            return request.send(); //todo:should check return code and launch ResponseException if it's not 200
View Full Code Here

TOP

Related Classes of org.agorava.api.rest.RequestTuner

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.