01: package org.columba.core.association.api;
02:
03: /**
04: *
05: * represents one association for an item
06: * an association is the tuple serviceId, metadataId, itemId
07: *
08: */
09: public interface IAssociation {
10:
11: /**
12: * @return the item id
13: */
14: String getItemId();
15:
16: /**
17: * @return the service id
18: */
19: String getServiceId();
20:
21: /**
22: * @return the metadata id
23: */
24: String getMetaDataId();
25:
26: }
|