View Javadoc

1   package com.service.customer.ejb;
2   
3   import com.service.customer.ejb.Customer;
4   
5   public interface ProcessCustomerSessionLocal {
6       public java.util.List<Customer> findAllCustomers();
7   
8       public Customer findCustomer(String key);
9   }