org.jboss.javax.rmi.RemoteObjectSubstitution Maven / Gradle / Ivy
package org.jboss.javax.rmi;
/**
*
* Interface that allows remote objects to be substituted for a different remote object
* before being written to the stream.
*
* This was introduced to allow jboss-ejb-client proxies to be swapped out for their corresponding IIOP stubs
*
* @author Stuart Douglas
*/
public interface RemoteObjectSubstitution {
Object writeReplaceRemote(Object other);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy