package 分布式对象创建系统; /** * 榛樿瀵硅薄宸ュ巶锛堝伐鍘傛柟娉曟ā寮忥級 * @author chuyang * @version 1.0 * @created 28-10月-2025 11:03:00 */ public class DefaultObjectFactory implements DistributedObjectFactory { public DefaultObjectFactory(){ } public void finalize() throws Throwable { } /** * * @param type */ @Override public DistributedObject createObject(ObjectType type){ return null; } /** * * @param type * @param id */ @Override public DistributedObject createObject(ObjectType type, String id){ return null; } }//end DefaultObjectFactory