Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Codecrew / Moya

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 30
  • Merge Requests 2
  • Wiki
  • Snippets
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • moya
  • ..
  • bortal
  • HelloBeanLocal.java
  • jkj's avatar
    project specific formatting · 869263ed
    git-svn-id: https://dev.intra.insomnia.fi/svn/trunk@43 8cf89bec-f6a3-4178-919f-364fb3449fe5
    jkj committed Mar 07, 2010
    869263ed Browse Files
HelloBeanLocal.java 233 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package fi.insomnia.bortal;

import java.util.List;

import javax.ejb.Local;

import fi.insomnia.bortal.db.HelloTo;

@Local
public interface HelloBeanLocal {

    String getHello(String name);

    List<HelloTo> getHelloHistory();
}