/**
* @return the interface to the flickr.interestingness methods
*/
public synchronized InterestingnessInterface getInterestingnessInterface() {
if (interestingnessInterface == null) {
interestingnessInterface = new InterestingnessInterface(apiKey, sharedSecret, transport);
}
return interestingnessInterface;
}