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
  • ..
  • beans
  • NewsBeanLocal.java
  • Tuomas Riihimäki's avatar
    Whoops... It's a tad too big commit... · a2492286
    Tuomas Riihimäki committed Aug 31, 2011
    a2492286
NewsBeanLocal.java 366 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
package fi.insomnia.bortal.beans;

import java.util.List;

import javax.ejb.Local;

import fi.insomnia.bortal.model.NewsGroup;

@Local
public interface NewsBeanLocal {

	NewsGroup findByName(String groupname);

	List<NewsGroup> findAll();

	NewsGroup findById(int newsgroupid);

	NewsGroup merge(NewsGroup newsgroup);

	void createNewsgroup(NewsGroup newsgroup);

}