
// Provide a default path to dwr.engine
if (dwr == null) var dwr = {};
if (dwr.engine == null) dwr.engine = {};
if (DWREngine == null) var DWREngine = dwr.engine;

if (CollectionHandler == null) var CollectionHandler = {};
CollectionHandler._path = '/dwr';
CollectionHandler.addCollection = function(p0, p1, callback) {
  dwr.engine._execute(CollectionHandler._path, 'CollectionHandler', 'addCollection', p0, p1, callback);
}
CollectionHandler.editCollection = function(p0, p1, p2, callback) {
  dwr.engine._execute(CollectionHandler._path, 'CollectionHandler', 'editCollection', p0, p1, p2, callback);
}
CollectionHandler.deleteCollectionsById = function(p0, callback) {
  dwr.engine._execute(CollectionHandler._path, 'CollectionHandler', 'deleteCollectionsById', p0, callback);
}
