AssociationEditorLocal.java from Texai at Krugle
Show AssociationEditorLocal.java syntax highlighted
package org.texai.kb.ejb.session.shared;
import com.sleepycat.persist.EntityStore;
import java.util.List;
import javax.ejb.Local;
import org.texai.kb.entity.AtomicTerm;
import org.texai.kb.entity.BinaryGAF;
import org.texai.kb.entity.AbstractReifiedTerm;
import org.texai.kb.entity.AbstractTerm;
/**
* This is the business interface for AssociationEditor enterprise bean.
*/
@Local
public interface AssociationEditorLocal {
/**
* Persists the given binary ground atomic formula.
*
* @param binaryGAF the given binary ground atomic formula
*/
void editBinaryGAF(final BinaryGAF binaryGAF);
/** Sets the entity store.
*
* @param entityStore
*/
void setEntityStore(final EntityStore entityStore);
/** Initializes the primary and secondary indicies. */
void initializeIndices();
}
See more files for this project here