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.
69 lines
939 B
69 lines
939 B
package 分布式对象创建系统;
|
|
|
|
|
|
/**
|
|
* 鏁版嵁瀹炰綋瀵硅薄锛堝師鍨嬫ā寮忥級
|
|
* @author chuyang
|
|
* @version 1.0
|
|
* @created 28-10月-2025 11:03:00
|
|
*/
|
|
public class DataEntity implements DistributedObject, Cloneable {
|
|
|
|
private String dataContent;
|
|
private String objectId;
|
|
private String storageNode;
|
|
|
|
public DataEntity(){
|
|
|
|
}
|
|
|
|
public void finalize() throws Throwable {
|
|
|
|
}
|
|
/**
|
|
*
|
|
* @param objectId
|
|
*/
|
|
public DataEntity(String objectId){
|
|
|
|
}
|
|
|
|
@Override
|
|
public DataEntity clone(){
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* Getter鍜孲etter
|
|
*/
|
|
public String getDataContent(){
|
|
return "";
|
|
}
|
|
|
|
@Override
|
|
public String getObjectId(){
|
|
return "";
|
|
}
|
|
|
|
@Override
|
|
public void initialize(){
|
|
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param content
|
|
*/
|
|
public void setDataContent(String content){
|
|
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param id
|
|
*/
|
|
@Override
|
|
public void setObjectId(String id){
|
|
|
|
}
|
|
}//end DataEntity
|