package com.tutorial; import javax.ejb.Remote; @Remote public interface SimpleBean { //public void createCustomers(int id, String name); public void createCustomers(); public Customer getCustomer(int id); }