package com.ccl.rmi.bean; import java.rmi.Remote; class RemoteMethodInvocationImpl implements Remote { private String name; public RemoteMethodInvocationImpl() { } public Object getRMIObject() { return new RemoteMethodInvocationImpl(); } public String getName() { return name; } public void setName(String name) { this.name = name; } }
作者:chengchanglun 發(fā)表于2012-4-11 17:18:56 原文鏈接閱讀:12 評論:0 查看評論