1: package org.concern; 2: 3: public interface Collaboration extends Callable, Notifiable { 4: void register(String name, Callable callable); 5: 6: void register(String name, Notifiable notifiable); 7: }