KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > columba > core > association > api > IAssociation


1 package org.columba.core.association.api;
2
3 /**
4  *
5  * represents one association for an item
6  * an association is the tuple serviceId, metadataId, itemId
7  *
8  */

9 public interface IAssociation {
10     
11     /**
12      * @return the item id
13      */

14     String JavaDoc getItemId();
15     
16     /**
17      * @return the service id
18      */

19     String JavaDoc getServiceId();
20     
21     /**
22      * @return the metadata id
23      */

24     String JavaDoc getMetaDataId();
25     
26 }
27
Popular Tags