Seam.Remoting.type.logginManager = function() {
  this.__callback = new Object();
  Seam.Remoting.type.logginManager.prototype.checkSession = function(callback) {
    return Seam.Remoting.execute(this, "checkSession", [], callback);
  }
  Seam.Remoting.type.logginManager.prototype.logout = function(callback) {
    return Seam.Remoting.execute(this, "logout", [], callback);
  }
  Seam.Remoting.type.logginManager.prototype.dirtySession = function(callback) {
    return Seam.Remoting.execute(this, "dirtySession", [], callback);
  }
}
Seam.Remoting.type.logginManager.__name = "logginManager";

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

