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

if (window['dojo']) dojo.provide('dwr.interface.ThreadBean');

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

ThreadBean._path = '/dwr';

/**
 * @param {int} p0 a param
 * @param {short} p1 a param
 * @param {function|Object} callback callback function or options object
 */
ThreadBean.setTopicState = function(p0, p1, callback) {
  return dwr.engine._execute(ThreadBean._path, 'ThreadBean', 'setTopicState', arguments);
};


