001 package biz.hammurapi.rules.jsr94; 002 003 import java.util.Collection; 004 005 /** 006 * Provides access to collection of session rules for interrogation of 007 * their metadata. 008 * @author Pavel 009 * 010 */ 011 public interface RuleExecutionSetMetadata extends javax.rules.RuleExecutionSetMetadata { 012 013 /** 014 * @return Collection of rules in the session. 015 */ 016 Collection getRules(); 017 }