Skip to content

Instantly share code, notes, and snippets.

@sejersbol
Created February 26, 2011 08:29
Show Gist options
  • Save sejersbol/845052 to your computer and use it in GitHub Desktop.
Save sejersbol/845052 to your computer and use it in GitHub Desktop.
Simple Stateless EJB
@Stateless
public class SimpleSpeakQuery implements SpeakQuery {
private String message = new String("Hello, ");
public String sayHello(String name) throws Exception {
return message + name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment