001 package biz.hammurapi.rules.jsr94; 002 003 /** 004 * Provides information about rule. Instances of this interface 005 * are returned as collection elements from RuleExecutionsetMetadata.getRulesMetadata() 006 * method. 007 * @author Pavel 008 */ 009 public interface RuleMetadata { 010 011 /** 012 * @return Rule name. 013 */ 014 String getName(); 015 016 /** 017 * @return Rule description. 018 */ 019 String getDescription(); 020 }