
function Profile() { }
Profile._path = '/dwr';

Profile.setDescription = function(p1, callback) {
    DWREngine._execute(Profile._path, 'Profile', 'setDescription', false, p1, callback);
}

Profile.setUlubione = function(p2, callback) {
    DWREngine._execute(Profile._path, 'Profile', 'setUlubione', false, false, p2, callback);
}

Profile.pingSession = function(callback) {
    DWREngine._execute(Profile._path, 'Profile', 'pingSession', false, false, callback);
}

