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

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

QuestionBean._path = '/dwr';

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

QuestionBean.addQuestion = function(p0, p1, p2, p3, callback) {
  dwr.engine._execute(QuestionBean._path, 'QuestionBean', 'addQuestion', p0, p1, p2, p3, false, callback);
};

QuestionBean.changeQuestion = function(p0, p1, callback) {
  dwr.engine._execute(QuestionBean._path, 'QuestionBean', 'changeQuestion', p0, p1, false, callback);
};

QuestionBean.addQuestionComment = function(p0, p1, p2, p3, p4, callback) {
  dwr.engine._execute(QuestionBean._path, 'QuestionBean', 'addQuestionComment', p0, p1, p2, p3, p4, false, callback);
};

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



