
// Provide a default path to dwr.engine
if (typeof this['dwr'] == 'undefined') this.dwr = {};
if (typeof dwr['engine'] == 'undefined') dwr.engine = {};

if (typeof this['RegistrationService'] == 'undefined') this.RegistrationService = {};

RegistrationService._path = '/dwr';

RegistrationService.isNickNameUsed = function(p0, callback) {
  dwr.engine._execute(RegistrationService._path, 'RegistrationService', 'isNickNameUsed', p0, callback);
};

RegistrationService.isUserWithSuchUsernameAndPasswordExists = function(p0, p1, callback) {
  dwr.engine._execute(RegistrationService._path, 'RegistrationService', 'isUserWithSuchUsernameAndPasswordExists', p0, p1, callback);
};

RegistrationService.isThisIsSuperuserPassword = function(p0, callback) {
  dwr.engine._execute(RegistrationService._path, 'RegistrationService', 'isThisIsSuperuserPassword', p0, callback);
};



