// 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.howto18.a; import javax.ejb.Remote; /** * Remote component interface for the UserEndPointServiceBean session bean. *

* TODO: Model Documentation for org.andromda.test.howto18.a.UserEndPointService *

*/ @Remote public interface UserEndPointServiceRemote extends UserEndPointService { // ------------ Business Methods ----------------- /** *

* TODO: Model Documentation for addUser *

* @param name * @throws UserException */ public void addUser(String name) throws UserException; /** *

* TODO: Model Documentation for getUser *

* @param id * @return User * @throws UserException */ public User getUser(Long id) throws UserException; }