You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
633 B

package ;
/**
* 榛樿<E6A69B>瀵硅薄宸ュ巶锛堝伐鍘傛柟娉曟ā寮忥級
* @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