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
  • ..
  • beans
  • EventMapBeanLocal.java
  • Tuomas Riihimäki's avatar
    Lisätty: · 8ef7678a
      - LanEventDomain
      - Facadesäätöä
      - Englanninkielistä käännöstä.
      - Poistettu PermissionDeniedException turhana ja huonona designpatternina..
    Tuomas Riihimäki committed May 12, 2012
    8ef7678a
EventMapBeanLocal.java 304 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
package fi.insomnia.bortal.beans;

import javax.ejb.Local;

import fi.insomnia.bortal.model.EventMap;

@Local
public interface EventMapBeanLocal {

	EventMap saveMap(EventMap eventmap);

	EventMap create(String mapname);

	void sendImage(int destId, byte[] imagedata);

	EventMap find(Integer mapId);

}