// license-header java merge-point // // Attention: Generated code! Do not modify by hand! // Generated by crud/ManageableServiceRemote.vsl in andromda-ejb3-cartridge on 09/18/2014 16:56:11. // package org.andromda.test.howto16.a.crud; import java.util.List; import java.util.Map; import org.andromda.test.howto16.a.Car; import org.andromda.test.howto16.a.CarType; /** * Manageable service bean remote interface */ public interface CarManageableService { public Car create(String serial, String name, CarType type, Long id, Long owner) throws CarCreateManageableException; public Car readById(Long id) throws CarReadManageableException; public List read(String serial, String name, CarType type, Long id, Long owner) throws CarReadManageableException; public List readAll() throws CarReadManageableException; public Map readBackingLists() throws CarReadManageableException; public Car update(String serial, String name, CarType type, Long id, Long owner) throws CarUpdateManageableException; public void delete(Long[] ids) throws CarDeleteManageableException; }