// Provide a default path to dwr.engine if (dwr == null) var dwr = {}; if (dwr.engine == null) dwr.engine = {}; if (DWREngine == null) var DWREngine = dwr.engine; dwr.engine._defaultPath = '/dwr'; if (artistService == null) var artistService = {}; artistService._path = '/dwr'; artistService.load = function(p0, p1, callback) { dwr.engine._execute(artistService._path, 'artistService', 'load', p0, p1, callback); } artistService.loadByMediaFragmentNumber = function(p0, callback) { dwr.engine._execute(artistService._path, 'artistService', 'loadByMediaFragmentNumber', p0, callback); } artistService.countAllArtists = function(callback) { dwr.engine._execute(artistService._path, 'artistService', 'countAllArtists', callback); } artistService.countArtistsByCategory = function(p0, callback) { dwr.engine._execute(artistService._path, 'artistService', 'countArtistsByCategory', p0, callback); } artistService.findRecentArtists = function(p0, p1, p2, callback) { dwr.engine._execute(artistService._path, 'artistService', 'findRecentArtists', p0, p1, p2, callback); } artistService.findPopulairArtists = function(p0, callback) { dwr.engine._execute(artistService._path, 'artistService', 'findPopulairArtists', p0, callback); } artistService.findHighlyRatedArtists = function(p0, callback) { dwr.engine._execute(artistService._path, 'artistService', 'findHighlyRatedArtists', p0, callback); } artistService.findArtistsByCategory = function(p0, p1, p2, p3, callback) { dwr.engine._execute(artistService._path, 'artistService', 'findArtistsByCategory', p0, p1, p2, p3, callback); } artistService.findArtistsByCategoryByRating = function(p0, p1, p2, p3, callback) { dwr.engine._execute(artistService._path, 'artistService', 'findArtistsByCategoryByRating', p0, p1, p2, p3, callback); } artistService.findAllArtists = function(p0, p1, p2, callback) { dwr.engine._execute(artistService._path, 'artistService', 'findAllArtists', p0, p1, p2, callback); } artistService.findAllArtistsByRating = function(p0, p1, p2, callback) { dwr.engine._execute(artistService._path, 'artistService', 'findAllArtistsByRating', p0, p1, p2, callback); } artistService.findAllArtistsForUser = function(p0, p1, callback) { dwr.engine._execute(artistService._path, 'artistService', 'findAllArtistsForUser', p0, p1, callback); }