// 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.Date; import java.util.List; import java.util.Map; import org.andromda.test.howto16.a.Person; /** * Manageable service bean remote interface */ public interface PersonManageableService { public Person create(String name, Date birthDate, Long id, Long[] cars) throws PersonCreateManageableException; public Person readById(Long id) throws PersonReadManageableException; public List read(String name, Date birthDate, Long id, Long[] cars) throws PersonReadManageableException; public List readAll() throws PersonReadManageableException; public Map readBackingLists() throws PersonReadManageableException; public Person update(String name, Date birthDate, Long id, Long[] cars) throws PersonUpdateManageableException; public void delete(Long[] ids) throws PersonDeleteManageableException; }