/* This include works in tandem with the com.rh.estore.common.gwt.init.Init GWT
 * module.  Please see the comments in com.rh.estore.common.gwt.init.client.Init.java
 * (in modules/gwt/src) for more information.
 */
function GWTInitializer() {
  this._paramMap = new Object();
}
GWTInitializer.prototype.getInitParameter = function(name) {
  return this._paramMap[name];
}
GWTInitializer.prototype.setInitParameter = function(name, value) {
  this._paramMap[name] = value;
}
var gwtInitializer = new GWTInitializer();
