Category Archives: Java

Introducing RestFB, a Java Facebook REST API Client

Just wanted to mention that I’ve written a Facebook REST API client called RestFB, which is available under the terms of the MIT license. If you need to do a Facebook Connect implementation in Java, please give it a try and let me know what you think!
Posted in Java | Leave a comment

When Callable<V> is not enough

At work today I ended up having to write this because Callable<V> wasn’t flexible enough for what I needed: public interface Operation<V, E extends Throwable> { V execute() throws E; } …would love to see this (as well as a Pair<A,B> class) in a future cut of Java.
Posted in Java | 1 Comment

Spring Web Services

Arjen Poutsma recently announced the first public release of Spring Web Services. Once it hits RC status, I'm going to look into it for revetkn.com, since I'd like to aggregate a bunch of useful web services. You can check out a very high-level overview of SWS in the form of Arjen's slides from [...]
Posted in Java | Leave a comment