@Override
public void handleRequest() throws BadRequestException, SQLException, IOException, CacheException {
final int artistId = Integer.parseInt( getRequest().getUrlParam(2) );
TArtists tpl = new TArtists();
tpl.setArtists( relatedArtists.getRelatedArtistsFor(artistId) );
getResponse().showJson( tpl.makeRenderer() );
}