// 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.JIndex');

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

JIndex._path = '/dwr';

/**
 * @param {function|Object} callback callback function or options object
 */
JIndex.getMyPoint = function(callback) {
  return dwr.engine._execute(JIndex._path, 'JIndex', 'getMyPoint', arguments);
};

/**
 * @param {function|Object} callback callback function or options object
 */
JIndex.recentNoticeList = function(callback) {
  return dwr.engine._execute(JIndex._path, 'JIndex', 'recentNoticeList', arguments);
};


