// Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov. // Jad home page: http://www.geocities.com/kpdus/jad.html // Decompiler options: braces fieldsfirst space lnc package org.apache.oltu.oauth2.client; import java.util.Map; import org.apache.oltu.oauth2.client.request.OAuthClientRequest; import org.apache.oltu.oauth2.client.response.OAuthClientResponse; import org.apache.oltu.oauth2.common.exception.OAuthProblemException; import org.apache.oltu.oauth2.common.exception.OAuthSystemException; public interface HttpClient { public abstract OAuthClientResponse execute(OAuthClientRequest oauthclientrequest, Map map, String s, Class class1) throws OAuthSystemException, OAuthProblemException; public abstract void shutdown(); }