X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=source%2Fmir%2Fstorage%2Fstore%2Ftest%2FEntityC1.java;fp=source%2Fmir%2Fstorage%2Fstore%2Ftest%2FEntityC1.java;h=635ca31c9b3c840db4cbebbe59426fb4f46f5f80;hb=1149ec9b078b0f9175b9c2d006313e6810e46ffb;hp=0000000000000000000000000000000000000000;hpb=0a0c4d83471bdab28a17d42f9efb74c25ca84681;p=mir.git diff --git a/source/mir/storage/store/test/EntityC1.java b/source/mir/storage/store/test/EntityC1.java new file mode 100755 index 00000000..635ca31c --- /dev/null +++ b/source/mir/storage/store/test/EntityC1.java @@ -0,0 +1,30 @@ +package mir.storage.store.test; + +/** + * Title: + * Description: + * Copyright: Copyright (c) 2002 + * Company: + * @author + * @version 1.0 + */ + +import java.util.*; +import mir.storage.store.*; + +public class EntityC1 implements StorableObject { + + String id; + + public EntityC1(String id) { + this.id=id; + } + + public StoreIdentifier getStoreIdentifier() { + return new StoreIdentifier(this, StoreContainerType.STOC_TYPE_ENTITY,id); + } + + public Set notifyOnReleaseSet() { + return null; + } +} \ No newline at end of file