PlaceBeanLocal.java 410 Bytes
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package fi.insomnia.bortal.beans;

import fi.insomnia.bortal.model.Place;
import javax.ejb.Local;

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

/**
 *
 * @author tuukka
 */
@Local
@RemoteDestination
public interface PlaceBeanLocal {

    public Place mergeChanges(Place place);
    
}