Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Antti Väyrynen / Moya

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Wiki
  • 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
    formatting · cf043a32
    git-svn-id: https://dev.intra.insomnia.fi/svn/trunk@42 8cf89bec-f6a3-4178-919f-364fb3449fe5
    jkj committed Mar 07, 2010
    cf043a32
HelloBeanLocal.java 227 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();
}