/* * * Copyright 2000 Sun Microsystems, Inc. All Rights Reserved. * * This software is the proprietary information of Sun Microsystems, Inc. * Use is subject to license terms. * */ package customer; import java.util.ArrayList; import javax.ejb.EJBLocalObject; public interface LocalSubscription extends EJBLocalObject{ public String getTitle(); public SubscriptionType getType(); public ArrayList getCustomerList(); }