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.

25 lines
441 B

package ;
/**
* 鎶借薄宸ュ巶鎺ュ彛锛氬畾涔夊垱寤哄垎甯冨紡瀵硅薄鐨勬柟娉?
* @author chuyang
* @version 1.0
* @created 28-10月-2025 11:03:00
*/
public interface DistributedObjectFactory {
/**
*
* @param type
*/
public DistributedObject createObject(ObjectType type);
/**
*
* @param type
* @param id
*/
public DistributedObject createObject(ObjectType type, String id);
}