// 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.response; import org.apache.oltu.oauth2.common.exception.OAuthProblemException; // Referenced classes of package org.apache.oltu.oauth2.client.response: // OAuthClientResponse public class OAuthResourceResponse extends OAuthClientResponse { public OAuthResourceResponse() { } public String getBody() { return body; } public String getContentType() { return contentType; } public int getResponseCode() { return responseCode; } protected void init(String s, String s1, int i) throws OAuthProblemException { setBody(s); setContentType(s1); setResponseCode(i); } protected void setBody(String s) throws OAuthProblemException { body = s; } protected void setContentType(String s) { contentType = s; } protected void setResponseCode(int i) { responseCode = i; } }