1 26 27 29 package de.nava.informa.core; 30 31 import java.util.Collection ; 32 33 38 public interface UserIF extends WithIdMIF, WithNameMIF { 39 40 41 Collection getChannelSubscriptions(); 42 void addChannelSubscription(ChannelSubscriptionIF subscription); 43 void removeChannelSubscription(ChannelSubscriptionIF subscription); 44 45 46 Collection getItemMetadata(); 47 void addItemMetadata(ItemMetadataIF metadata); 48 void removeItemMetadata(ItemMetadataIF metadata); 49 50 } 51 | Popular Tags |