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

Video.addComment = function(p0, p1, p2, callback) {
    DWREngine._execute(Video._path, 'Video', 'addComment', p0, p1, p2, callback);
}

Video.getComments = function(p0, callback) {
    DWREngine._execute(Video._path, 'Video', 'getComments', p0, callback);
}

Video.removeComment = function(p0, p1, callback) {
    DWREngine._execute(Video._path, 'Video', 'removeComment', p0, p1, callback);
}

Video.rateVideo = function(p0, p1, p2, callback) {
    DWREngine._execute(Video._path, 'Video', 'rateVideo', p0, p1, p2, callback);
}

Video.getNumOfRates = function(p0, callback) {
    DWREngine._execute(Video._path, 'Video', 'getNumOfRates', p0, callback);
}

Video.getAverageRates = function(p0, callback) {
    DWREngine._execute(Video._path, 'Video', 'getAverageRates', p0, callback);
}

