// license-header java merge-point // // Attention: Generated code! Do not modify by hand! // Generated by SessionRemote.vsl in andromda-ejb3-cartridge on 09/18/2014 16:56:08. // package org.andromda.test.howto7.a; import java.util.List; import javax.ejb.Remote; /** * Remote component interface for the RentalServiceBean session bean. *
* TODO: Model Documentation for org.andromda.test.howto7.a.RentalService *
*/ @Remote public interface RentalServiceRemote extends RentalService { // ------------ Business Methods ----------------- /** ** Returns a list of all cars known by the system. *
* @return List * @throws RentalException */ public List getAllCars() throws RentalException; /** ** Returns all customers with the specified name. *
* @param name * @return List * @throws RentalException */ public List getCustomersByName(String name) throws RentalException; }