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
  • EventMapBeanLocal.java
  • Tuomas Riihimäki's avatar
    Massive rename. We have finally a name · 34debee2
    Tuomas Riihimäki committed Nov 18, 2012
    34debee2
EventMapBeanLocal.java 342 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
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);

	EventMap clearPlaces(EventMap map);

}