001 package com.service.customer.ejb; 002 003 import com.service.customer.ejb.Customer; 004 005 public interface ProcessCustomerSessionLocal { 006 public java.util.List<Customer> findAllCustomers(); 007 008 public Customer findCustomer(String key); 009 }