Class which specifies the transfer properties to use during the RMI connection.
This class is immutable and the Builder should be used for its construction.
public static final class | Builder class for the enclosing transfer properties. |
public static Builder | builder() Creates a new builder instance for this class. |
public < | getClassProperties( Gets the specified properties for the given class. |
public < | getExecutableProperties( Gets the specified properties for the given constructor. |
public MethodTransferProperties | getExecutableProperties( Gets the specified properties for the given method. |
public <C> ClassTransferProperties<C> getClassProperties(Class<C> clazz )
Overridden from: RMITransferPropertiesHolder
Gets the specified properties for the given class.
CThe type of the class.
clazzThe class to lookup the properties for.
The found properties or
null
.public <C> ConstructorTransferProperties<C> getExecutableProperties(Constructor<C> constructor )
Overridden from: RMITransferPropertiesHolder
Gets the specified properties for the given constructor.
CThe declaring class of the constructor.
constructorThe constructor to lookup the properties for.
The found properties or
null
.Overridden from: RMITransferPropertiesHolder
Gets the specified properties for the given method.
methodThe method to lookup the properties for.
The found properties or
null
.