PlaceMapBeanLocal.java 362 Bytes
package fi.insomnia.bortal.beans;
import java.io.IOException;
import java.io.OutputStream;

import javax.ejb.Local;

import fi.insomnia.bortal.model.Event;

@Local
public interface PlaceMapBeanLocal {


    void printPlaceMapToStream(OutputStream outputStream, String filetype, Event event, Integer mapId, Integer userId, Integer placeId) throws IOException;

}