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

import javax.ejb.Local;

import fi.insomnia.bortal.model.EventMap;

@Local
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);
    
}