01: package biz.hammurapi.rules.jsr94;
02:
03: /**
04: * Rule set metadata.
05: * @author Pavel Vlasov
06: * @revision $Revision$
07: */
08: class RuleExecutionSetMetadata implements
09: javax.rules.RuleExecutionSetMetadata {
10: /**
11: *
12: */
13: private static final long serialVersionUID = -8052803172568858147L;
14:
15: private String uri;
16: private String name;
17: private String description;
18:
19: /**
20: * @param uri
21: * @param name
22: * @param description
23: */
24: RuleExecutionSetMetadata(String uri, String name, String description) {
25: super ();
26: this .uri = uri;
27: this .name = name;
28: this .description = description;
29: }
30:
31: public String getUri() {
32: return uri;
33: }
34:
35: public String getName() {
36: return name;
37: }
38:
39: public String getDescription() {
40: return description;
41: }
42:
43: }
|