src/java.rmi/share/classes/java/rmi/package.html
changeset 52991 9e28eff3d40f
parent 52990 1ed8de9045a7
child 52992 4bb6e0871bf7
equal deleted inserted replaced
52990:1ed8de9045a7 52991:9e28eff3d40f
     1 <!--
       
     2  Copyright (c) 1998, Oracle and/or its affiliates. All rights reserved.
       
     3  DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       
     4 
       
     5  This code is free software; you can redistribute it and/or modify it
       
     6  under the terms of the GNU General Public License version 2 only, as
       
     7  published by the Free Software Foundation.  Oracle designates this
       
     8  particular file as subject to the "Classpath" exception as provided
       
     9  by Oracle in the LICENSE file that accompanied this code.
       
    10 
       
    11  This code is distributed in the hope that it will be useful, but WITHOUT
       
    12  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
       
    13  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
       
    14  version 2 for more details (a copy is included in the LICENSE file that
       
    15  accompanied this code).
       
    16 
       
    17  You should have received a copy of the GNU General Public License version
       
    18  2 along with this work; if not, write to the Free Software Foundation,
       
    19  Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
       
    20 
       
    21  Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
       
    22  or visit www.oracle.com if you need additional information or have any
       
    23  questions.
       
    24 -->
       
    25 
       
    26 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
       
    27 <html>
       
    28 <body bgcolor="white">
       
    29 
       
    30 Provides the RMI package. RMI is Remote Method Invocation.  It is a
       
    31 mechanism that enables an object on one Java virtual machine to invoke
       
    32 methods on an object in another Java virtual machine.  Any object that
       
    33 can be invoked this way must implement the Remote interface. When such
       
    34 an object is invoked, its arguments are ``marshalled'' and sent from the
       
    35 local virtual machine to the remote one, where the arguments are
       
    36 ``unmarshalled.''  When the method terminates, the results are
       
    37 marshalled from the remote machine and sent to the caller's virtual
       
    38 machine.  If the method invocation results in an exception being
       
    39 thrown, the exception is indicated to caller.
       
    40 
       
    41 <!--
       
    42 <h2>Package Specification</h2>
       
    43 
       
    44 ##### FILL IN ANY SPECS NEEDED BY JAVA COMPATIBILITY KIT #####
       
    45 <ul>
       
    46   <li><a href="">##### REFER TO ANY FRAMEMAKER SPECIFICATION HERE #####</a>
       
    47 </ul>
       
    48 
       
    49 <h2>Related Documentation</h2>
       
    50 
       
    51 For overviews, tutorials, examples, guides, and tool documentation, please see:
       
    52 <ul>
       
    53   <li><a href="">##### REFER TO NON-SPEC DOCUMENTATION HERE #####</a>
       
    54 </ul>
       
    55 -->
       
    56 
       
    57 @since 1.1
       
    58 </body>
       
    59 </html>