ObjectServerDecoratorpublic class ObjectServerDecorator extends Object implements InvocationHandler
Fields Summary |
---|
private final int | port | private final String | user | private final String | password | private final String | host | private Method | openClient |
Constructors Summary |
---|
public ObjectServerDecorator(String user, String password, String host, int port)
this.user = user;
this.password = password;
this.host = host;
this.port = port;
try {
this.openClient = ObjectServer.class.getMethod("openClient",new Class[]{});
} catch (Exception e) {
//ignore method is visible
e.printStackTrace();
}
|
|