javax.rules
Interface RuleExecutionSetMetadata

All Superinterfaces:
java.io.Serializable

public interface RuleExecutionSetMetadata
extends java.io.Serializable

The RuleExecutionSetMetadata exposes some simple properties of the RuleExecutionSet to the runtime user. This interface can be extended by rule engine providers to expose additional proprietary properties to the runtime user. It is recommended but not required that any properties that are exposed in such extensions be read only, and that their values be static for the duration of the RuleSession.


Method Summary
 java.lang.String getDescription()
          Get a short description about this RuleExecutionSet.
 java.lang.String getName()
          Get the name of this RuleExecutionSet.
 java.lang.String getUri()
          Get the URI for this RuleExecutionSet.
 

Method Detail

getUri

public java.lang.String getUri()
Get the URI for this RuleExecutionSet.

Returns:
String The URI for this RuleExecutionSet.

getName

public java.lang.String getName()
Get the name of this RuleExecutionSet.

Returns:
String The name of the RuleExecutionSet.

getDescription

public java.lang.String getDescription()
Get a short description about this RuleExecutionSet.

Returns:
String The description of this RuleExecutionSet or null.


Copyright © 2004 Java Community Process. All Rights Reserved.