PlaceMapBeanLocal.java 705 Bytes
package fi.insomnia.bortal.beans;

import java.io.IOException;
import java.io.OutputStream;
import java.util.List;

import javax.ejb.Local;

import org.granite.messaging.service.annotations.RemoteDestination;

import fi.insomnia.bortal.model.EventMap;
import fi.insomnia.bortal.model.Place;
import fi.insomnia.bortal.model.User;

@Local
@RemoteDestination
public interface PlaceMapBeanLocal {

  //  public String getSelectPlaceMapUrl(EventMap activeMap, List<Place> selectedPlaces, User user);

    public Long selectablePlaceCount(EventMap activeMap);

    public EventMap findMap(Integer mapId);

//    public List<Place> findSelectedPlaces(EventMap map);

  //  public EventMap findMap(int i);
    
}