// 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.client.validator.TokenValidator; import org.apache.oltu.oauth2.common.exception.OAuthProblemException; import org.apache.oltu.oauth2.common.token.OAuthToken; // Referenced classes of package org.apache.oltu.oauth2.client.response: // OAuthClientResponse public abstract class OAuthAccessTokenResponse extends OAuthClientResponse { public OAuthAccessTokenResponse() { } public abstract String getAccessToken(); public String getBody() { return body; } public abstract Long getExpiresIn(); public abstract OAuthToken getOAuthToken(); public abstract String getRefreshToken(); public abstract String getScope(); protected void init(String s, String s1, int i) throws OAuthProblemException { validator = new TokenValidator(); super.init(s, s1, i); } }