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

Blog.listComments = function(p0, p1, callback) {
    Engine._execute(Blog._path, 'Blog', 'listComments', p0, p1, callback);
}

Blog.listPostComments = function(p0, p1, p2, callback) {
    Engine._execute(Blog._path, 'Blog', 'listPostComments', p0, p1, p2, callback);
}

Blog.listUserComments = function(p0, p1, p2, callback) {
    Engine._execute(Blog._path, 'Blog', 'listUserComments', p0, p1, p2, callback);
}

Blog.postComment = function(p0, p1, p2, p3, callback) {
    Engine._execute(Blog._path, 'Blog', 'postComment', p0, p1, p2, p3, callback);
}

Blog.listPosts = function(p0, p1, callback) {
    Engine._execute(Blog._path, 'Blog', 'listPosts', p0, p1, callback);
}

Blog.login = function(p0, p1, callback) {
    Engine._execute(Blog._path, 'Blog', 'login', p0, p1, callback);
}

Blog.listEventPostComments = function(p0, p1, p2, callback) {
    Engine._execute(Blog._path, 'Blog', 'listEventPostComments', p0, p1, p2, callback);
}

Blog.postEventComment = function(p0, p1, p2, p3, callback) {
    Engine._execute(Blog._path, 'Blog', 'postEventComment', p0, p1, p2, p3, callback);
}
