X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=source%2Fmir%2Fstorage%2Fstore%2Ftest%2FEntityC3.java;fp=source%2Fmir%2Fstorage%2Fstore%2Ftest%2FEntityC3.java;h=3c140cb652318c3092467b516c5da7f6c735655f;hb=6fb36d4e86dce331db03a398c8a995ee93e348d0;hp=0000000000000000000000000000000000000000;hpb=1149ec9b078b0f9175b9c2d006313e6810e46ffb;p=mir.git diff --git a/source/mir/storage/store/test/EntityC3.java b/source/mir/storage/store/test/EntityC3.java new file mode 100755 index 00000000..3c140cb6 --- /dev/null +++ b/source/mir/storage/store/test/EntityC3.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 EntityC3 implements StorableObject { + + String id; + + public EntityC3(String id) { + this.id=id; + } + + public StoreIdentifier getStoreIdentifier() { + return new StoreIdentifier(this, StoreContainerType.STOC_TYPE_ENTITY,id); + } + + public Set getNotifyOnReleaseSet() { + return null; + } +} \ No newline at end of file