Seam.Remoting.type.portalRemoting = function() {
  this.__callback = new Object();
  Seam.Remoting.type.portalRemoting.prototype.getPortalContext = function(callback, exceptionHandler) {
    return Seam.Remoting.execute(this, "getPortalContext", [], callback, exceptionHandler);
  }
}
Seam.Remoting.type.portalRemoting.__name = "portalRemoting";

Seam.Component.register(Seam.Remoting.type.portalRemoting);

Seam.Remoting.type.httpSessionChecker = function() {
  this.__callback = new Object();
  Seam.Remoting.type.httpSessionChecker.prototype.isNewSession = function(callback, exceptionHandler) {
    return Seam.Remoting.execute(this, "isNewSession", [], callback, exceptionHandler);
  }
}
Seam.Remoting.type.httpSessionChecker.__name = "httpSessionChecker";

Seam.Component.register(Seam.Remoting.type.httpSessionChecker);

