EventMapBeanLocal.java
338 Bytes
package fi.codecrew.moya.beans;
import javax.ejb.Local;
import fi.codecrew.moya.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);
}