first cut of merge of STABLE-pre1_0 into HEAD. I won't even guarantee that it
[mir.git] / source / mir / storage / store / test / EntityC2.java
1 package mir.storage.store.test;
2
3 /**
4  * Title:
5  * Description:
6  * Copyright:    Copyright (c) 2002
7  * Company:
8  * @author
9  * @version 1.0
10  */
11
12 import java.util.*;
13 import mir.storage.store.*;
14
15 public class EntityC2 implements StorableObject {
16
17         String id;
18
19         public EntityC2(String id) {
20                 this.id=id;
21         }
22
23         public StoreIdentifier getStoreIdentifier() {
24                 return new StoreIdentifier(this, StoreContainerType.STOC_TYPE_ENTITY,id);
25         }
26
27         public Set getNotifyOnReleaseSet() {
28                 return null;
29         }
30 }