Name

UtilDelegate

Synopsis

This interface represents a delegate that implements the functionality exported by the javax.rmi.CORBA.Util class. You specify the delegate your Util instances should use by setting the javax.rmi.CORBA.UtilClass system property.

public interface UtilDelegate {
// Public Instance Methods
   public abstract Object copyObject(Object obj, 
        org.omg.CORBA.ORB orb) throws java.rmi.RemoteException;  
   public abstract Object[] copyObjects(
        Object[] obj, 
        org.omg.CORBA.ORB orb) throws java.rmi.RemoteException;  
   public abstract ValueHandler createValueHandler();  
   public abstract String getCodebase( Class clz);  
   public abstract Tie getTie( java.rmi.Remote target);  
   public abstract boolean isLocal(
        Stub stub) throws java.rmi.RemoteException;  
   public abstract Class loadClass(String className, 
        String remoteCodebase, 
        ClassLoader loader) throws ClassNotFoundException;  
   public abstract java.rmi.RemoteException mapSystemException(
        org.omg.CORBA.SystemException ex);  
   public abstract Object readAny(
        org.omg.CORBA.portable.InputStream in);  
   public abstract void registerTarget(Tie tie, 
        java.rmi.Remote target);  
   public abstract void unexportObject(
        java.rmi.Remote target) throws java.rmi.NoSuchObjectException;  
   public abstract java.rmi.RemoteException wrapException(
        Throwable obj);  
   public abstract void writeAbstractObject(
        org.omg.CORBA.portable.OutputStream out, 
        Object obj);  
   public abstract void writeAny(
        org.omg.CORBA.portable.OutputStream out, 
        Object obj);  
   public abstract void writeRemoteObject ...

Get Java Enterprise in a Nutshell, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.