Package eu.tneitzel.rmg.utils
Class EmptyWrapper
- java.lang.Object
-
- eu.tneitzel.rmg.utils.RemoteObjectWrapper
-
- eu.tneitzel.rmg.utils.EmptyWrapper
-
public class EmptyWrapper extends RemoteObjectWrapper
EmptyWrapper is basically a dummy class that extends RemoteWrapper. It is only used during the enum action as a container for the obtained bound names. In previous versions of remote-method-guesser, an instance of RemoteObjectWrapper was directly used for this purpose, but since critical properties like the associated remote object are missing, this class was created to make it more transparent that this is not a fully working wrapper.- Author:
- Tobias Neitzel (@qtc_de)
-
-
Field Summary
-
Fields inherited from class eu.tneitzel.rmg.utils.RemoteObjectWrapper
boundName, knownEndpoint, remoteObject
-
-
Constructor Summary
Constructors Constructor Description EmptyWrapper(String boundName)Create an EmptyWrapper by simply using RemoteObjectWrappers boundName constructor.
-
Method Summary
-
Methods inherited from class eu.tneitzel.rmg.utils.RemoteObjectWrapper
fromBoundNames, getByName, getInstance, getInstance, getInterfaceName, getUnicastWrapper, getUnicastWrappers, isKnown
-
-
-
-
Constructor Detail
-
EmptyWrapper
public EmptyWrapper(String boundName)
Create an EmptyWrapper by simply using RemoteObjectWrappers boundName constructor.- Parameters:
boundName- the bound name to associate with the wrapper
-
-