|
Package name java.rmi Overview This is a clean room implementation of java.rmi following J2SE 1.5 spec.Current Status Currently our package contains implementation for:
For all packages, deprecated method/classes have not been implemented. Note: Tools like rmic and rmiregistry have not been implemented yet. Note: code uses J2SE 5.0 features, such as generics, so it requires 5.0 VM and
libraries (i.e.: java.util.concurrent). It has been tested against Sun SDK,
removing the original java.rmi.* and replacing it by ours. Design Decisions
We have realized that the RMI architecture fits better in a framework
(container) / provider model, splitting the implementation from the
framework itself.
We consider to be a better approach to separate the framework from the
specific implementation, leaving the freedom to re-implement the RMI
runtime as needed be. Though that would be a better solution, the RMI
specification is defined in such a way that we can not develop our own
implementation following that model.
For these reason we have chosen to follow a layered architecture, which
seems to be the most appropriate model for the RMI implementation in
accordance with the specification.
Concept Design
From a component point of view, we decided to do the architectural design
based on a layered solution to the problem.
![]() Layers
Services
|
Copyright © 2005-2006 Instituto Tecnológico Córdoba
Last updated: Mar 17, 2006 |
|