1 package org.jboss.docs.cmp2.crimeportal; 2 3 import java.util.Set ; 4 import javax.ejb.EJBLocalObject ; 5 6 public interface Organization extends javax.ejb.EJBLocalObject  7 { 8 9 String getName(); 10 11 String getDescription(); 12 void setDescription(String description); 13 14 Set getMemberGangsters(); 15 16 Gangster getTheBoss(); 17 void setTheBoss(Gangster theBoss); 18 } 19 | Popular Tags |