You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@shindig.apache.org by Robert Evans <bo...@google.com> on 2008/06/07 04:54:34 UTC

Compile error: OAuthProtocolException does not seem to exist

I am getting a symbol not found error for OAuthProtocolException, which
indeed seems not to exist.

Was code checked in against a private version of OAuth?

Thanks,
Bob

Re: Compile error: OAuthProtocolException does not seem to exist

Posted by Brian Eaton <be...@google.com>.
Correction, fixed on Saturday.

On Mon, Jun 9, 2008 at 2:35 PM, Brian Eaton <be...@google.com> wrote:
> You've probably noticed already, but this got fixed on Friday.
>
> On Fri, Jun 6, 2008 at 8:05 PM, Robert Evans <bo...@google.com> wrote:
>> Here's a little inner class that will make the compiler happy:
>>
>>   private class OAuthProtocolException extends Exception {
>>     public OAuthProtocolException(OAuthMessage reply) {
>>       //To change body of created methods use File | Settings | File
>> Templates.
>>     }
>>
>>     public HttpResponse getResponseForGadget() {
>>       return null;  //To change body of created methods use File | Settings
>> | File Templates.
>>     }
>>
>>     public boolean canRetry() {
>>       return false;  //To change body of created methods use File | Settings
>> | File Templates.
>>     }
>>
>>     public boolean startFromScratch() {
>>       return false;  //To change body of created methods use File | Settings
>> | File Templates.
>>     }
>>   }
>>
>>
>>
>

Re: Compile error: OAuthProtocolException does not seem to exist

Posted by Brian Eaton <be...@google.com>.
You've probably noticed already, but this got fixed on Friday.

On Fri, Jun 6, 2008 at 8:05 PM, Robert Evans <bo...@google.com> wrote:
> Here's a little inner class that will make the compiler happy:
>
>   private class OAuthProtocolException extends Exception {
>     public OAuthProtocolException(OAuthMessage reply) {
>       //To change body of created methods use File | Settings | File
> Templates.
>     }
>
>     public HttpResponse getResponseForGadget() {
>       return null;  //To change body of created methods use File | Settings
> | File Templates.
>     }
>
>     public boolean canRetry() {
>       return false;  //To change body of created methods use File | Settings
> | File Templates.
>     }
>
>     public boolean startFromScratch() {
>       return false;  //To change body of created methods use File | Settings
> | File Templates.
>     }
>   }
>
>
>

Re: Compile error: OAuthProtocolException does not seem to exist

Posted by Robert Evans <bo...@google.com>.
Here's a little inner class that will make the compiler happy:

  private class OAuthProtocolException extends Exception {
    public OAuthProtocolException(OAuthMessage reply) {
      //To change body of created methods use File | Settings | File
Templates.
    }

    public HttpResponse getResponseForGadget() {
      return null;  //To change body of created methods use File | Settings
| File Templates.
    }

    public boolean canRetry() {
      return false;  //To change body of created methods use File | Settings
| File Templates.
    }

    public boolean startFromScratch() {
      return false;  //To change body of created methods use File | Settings
| File Templates.
    }
  }

Re: Compile error: OAuthProtocolException does not seem to exist

Posted by Kevin Brown <et...@google.com>.
This looks like it was added in Brian's recent patch. Did you forget to svn
add something by chance?

On Fri, Jun 6, 2008 at 7:54 PM, Robert Evans <bo...@google.com> wrote:

> I am getting a symbol not found error for OAuthProtocolException, which
> indeed seems not to exist.
>
> Was code checked in against a private version of OAuth?
>
> Thanks,
> Bob
>