info.jedi
Class LocalRepositoryImplementation

java.lang.Object
  |
  +--info.jedi.Repository
        |
        +--info.jedi.LocalRepository
              |
              +--info.jedi.LocalRepositoryImplementation

public class LocalRepositoryImplementation
extends LocalRepository

The default implementation of a LocalRepository.

See Also:
Repository, LocalRepository, MailDaemon

Fields inherited from class info.jedi.Repository
_local
 
Method Summary
 void bind(java.lang.String newName, java.lang.Object object)
          Binds a name to an object
 java.lang.Object lookup(java.lang.String name)
          look up an object by name in this repository
 MailDaemon mailDaemon()
          Returns the MailDaemon that handles remote method call requests for this Repository
 void unbind(java.lang.String newName)
          removes a name and the corresponding object from the repository
 
Methods inherited from class info.jedi.Repository
local
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

bind

public void bind(java.lang.String newName,
                 java.lang.Object object)
Binds a name to an object
Overrides:
bind in class LocalRepository

unbind

public void unbind(java.lang.String newName)
removes a name and the corresponding object from the repository
Overrides:
unbind in class LocalRepository

lookup

public java.lang.Object lookup(java.lang.String name)
look up an object by name in this repository
Overrides:
lookup in class Repository

mailDaemon

public MailDaemon mailDaemon()
Returns the MailDaemon that handles remote method call requests for this Repository
Overrides:
mailDaemon in class LocalRepository