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
  • ..
  • facade
  • LogEntryFacade.java
  • Tuomas Riihimäki's avatar
    Puljattu facadeista entitymanagerit superclassiin... · 81bfd6d0
    Tuomas Riihimäki committed Apr 28, 2012
    81bfd6d0 Browse Files
LogEntryFacade.java 288 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package fi.insomnia.bortal.facade;

import javax.ejb.LocalBean;
import javax.ejb.Stateless;

import fi.insomnia.bortal.model.LogEntry;

@Stateless
@LocalBean
public class LogEntryFacade extends IntegerPkGenericFacade<LogEntry> {

	public LogEntryFacade() {
		super(LogEntry.class);
	}

}