Java Doc for UnicastRemoteObject.java in  » 6.0-JDK-Core » rmi » java » rmi » server » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Net
51.Parser
52.PDF
53.Portal
54.Profiler
55.Project Management
56.Report
57.RSS RDF
58.Rule Engine
59.Science
60.Scripting
61.Search Engine
62.Security
63.Sevlet Container
64.Source Control
65.Swing Library
66.Template Engine
67.Test Coverage
68.Testing
69.UML
70.Web Crawler
71.Web Framework
72.Web Mail
73.Web Server
74.Web Services
75.Web Services apache cxf 2.2.6
76.Web Services AXIS2
77.Wiki Engine
78.Workflow Engines
79.XML
80.XML UI
Java Source Code / Java Documentation » 6.0 JDK Core » rmi » java.rmi.server 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.rmi.server.RemoteObject
      java.rmi.server.RemoteServer
         java.rmi.server.UnicastRemoteObject

All known Subclasses:   java.rmi.activation.ActivationGroup,
UnicastRemoteObject
public class UnicastRemoteObject extends RemoteServer (Code)
Used for exporting a remote object with JRMP and obtaining a stub that communicates to the remote object.

For the constructors and static exportObject methods below, the stub for a remote object being exported is obtained as follows:

  • If the remote object is exported using the UnicastRemoteObject.exportObject(Remote) UnicastRemoteObject.exportObject(Remote) method, a stub class (typically pregenerated from the remote object's class using the rmic tool) is loaded and an instance of that stub class is constructed as follows.
    • A "root class" is determined as follows: if the remote object's class directly implements an interface that extends Remote , then the remote object's class is the root class; otherwise, the root class is the most derived superclass of the remote object's class that directly implements an interface that extends Remote.
    • The name of the stub class to load is determined by concatenating the binary name of the root class with the suffix "_Stub".
    • The stub class is loaded by name using the class loader of the root class. The stub class must extend RemoteStub and must have a public constructor that has one parameter, of type RemoteRef .
    • Finally, an instance of the stub class is constructed with a RemoteRef .
  • If the appropriate stub class could not be found, or the stub class could not be loaded, or a problem occurs creating the stub instance, a StubNotFoundException is thrown.

  • For all other means of exporting:

    • If the remote object's stub class (as defined above) could not be loaded or the system property java.rmi.server.ignoreStubClasses is set to "true" (case insensitive), a java.lang.reflect.Proxy instance is constructed with the following properties:
      • The proxy's class is defined by the class loader of the remote object's class.
      • The proxy implements all the remote interfaces implemented by the remote object's class.
      • The proxy's invocation handler is a RemoteObjectInvocationHandler instance constructed with a RemoteRef .
      • If the proxy could not be created, a StubNotFoundException will be thrown.

    • Otherwise, an instance of the remote object's stub class (as described above) is used as the stub.

version:
   1.39, 05/05/07
author:
   Ann Wollrath
author:
   Peter Jones
since:
   JDK1.1



Constructor Summary
protected  UnicastRemoteObject()
     Creates and exports a new UnicastRemoteObject object using an anonymous port.
protected  UnicastRemoteObject(int port)
     Creates and exports a new UnicastRemoteObject object using the particular supplied port.
protected  UnicastRemoteObject(int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)
     Creates and exports a new UnicastRemoteObject object using the particular supplied port and socket factories.

Method Summary
public  Objectclone()
     Returns a clone of the remote object that is distinct from the original.
exception:
  CloneNotSupportedException - if clone failed due toa RemoteException.
public static  RemoteStubexportObject(Remote obj)
     Exports the remote object to make it available to receive incoming calls using an anonymous port.
public static  RemoteexportObject(Remote obj, int port)
     Exports the remote object to make it available to receive incoming calls, using the particular supplied port.
public static  RemoteexportObject(Remote obj, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)
     Exports the remote object to make it available to receive incoming calls, using a transport specified by the given socket factory.
public static  booleanunexportObject(Remote obj, boolean force)
     Removes the remote object, obj, from the RMI runtime.


Constructor Detail
UnicastRemoteObject
protected UnicastRemoteObject() throws RemoteException(Code)
Creates and exports a new UnicastRemoteObject object using an anonymous port.
throws:
  RemoteException - if failed to export object
since:
   JDK1.1



UnicastRemoteObject
protected UnicastRemoteObject(int port) throws RemoteException(Code)
Creates and exports a new UnicastRemoteObject object using the particular supplied port.
Parameters:
  port - the port number on which the remote object receives calls(if port is zero, an anonymous port is chosen)
throws:
  RemoteException - if failed to export object
since:
   1.2



UnicastRemoteObject
protected UnicastRemoteObject(int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) throws RemoteException(Code)
Creates and exports a new UnicastRemoteObject object using the particular supplied port and socket factories.
Parameters:
  port - the port number on which the remote object receives calls(if port is zero, an anonymous port is chosen)
Parameters:
  csf - the client-side socket factory for making calls to theremote object
Parameters:
  ssf - the server-side socket factory for receiving remote calls
throws:
  RemoteException - if failed to export object
since:
   1.2




Method Detail
clone
public Object clone() throws CloneNotSupportedException(Code)
Returns a clone of the remote object that is distinct from the original.
exception:
  CloneNotSupportedException - if clone failed due toa RemoteException. the new remote object
since:
   JDK1.1



exportObject
public static RemoteStub exportObject(Remote obj) throws RemoteException(Code)
Exports the remote object to make it available to receive incoming calls using an anonymous port.
Parameters:
  obj - the remote object to be exported remote object stub
exception:
  RemoteException - if export fails
since:
   JDK1.1



exportObject
public static Remote exportObject(Remote obj, int port) throws RemoteException(Code)
Exports the remote object to make it available to receive incoming calls, using the particular supplied port.
Parameters:
  obj - the remote object to be exported
Parameters:
  port - the port to export the object on remote object stub
exception:
  RemoteException - if export fails
since:
   1.2



exportObject
public static Remote exportObject(Remote obj, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) throws RemoteException(Code)
Exports the remote object to make it available to receive incoming calls, using a transport specified by the given socket factory.
Parameters:
  obj - the remote object to be exported
Parameters:
  port - the port to export the object on
Parameters:
  csf - the client-side socket factory for making calls to theremote object
Parameters:
  ssf - the server-side socket factory for receiving remote calls remote object stub
exception:
  RemoteException - if export fails
since:
   1.2



unexportObject
public static boolean unexportObject(Remote obj, boolean force) throws java.rmi.NoSuchObjectException(Code)
Removes the remote object, obj, from the RMI runtime. If successful, the object can no longer accept incoming RMI calls. If the force parameter is true, the object is forcibly unexported even if there are pending calls to the remote object or the remote object still has calls in progress. If the force parameter is false, the object is only unexported if there are no pending or in progress calls to the object.
Parameters:
  obj - the remote object to be unexported
Parameters:
  force - if true, unexports the object even if there arepending or in-progress calls; if false, only unexports the objectif there are no pending or in-progress calls true if operation is successful, false otherwise
exception:
  NoSuchObjectException - if the remote object is notcurrently exported
since:
   1.2



Methods inherited from java.rmi.server.RemoteServer
public static String getClientHost() throws ServerNotActiveException(Code)(Java Doc)
public static java.io.PrintStream getLog()(Code)(Java Doc)
public static void setLog(java.io.OutputStream out)(Code)(Java Doc)

Fields inherited from java.rmi.server.RemoteObject
protected transient RemoteRef ref(Code)(Java Doc)

Methods inherited from java.rmi.server.RemoteObject
public boolean equals(Object obj)(Code)(Java Doc)
public RemoteRef getRef()(Code)(Java Doc)
public int hashCode()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
public static Remote toStub(Remote obj) throws NoSuchObjectException(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.