01: package org.drools;
02:
03: public class Precondition {
04: private String code;
05: private String value;
06:
07: public Precondition() {
08:
09: }
10:
11: public Precondition(final String code, final String value) {
12: super ();
13: this .code = code;
14: this .value = value;
15: }
16:
17: public String getValue() {
18: return this .value;
19: }
20:
21: public void setValue(final String value) {
22: this .value = value;
23: }
24:
25: public String getCode() {
26: return this .code;
27: }
28:
29: public void setCode(final String code) {
30: this.code = code;
31: }
32:
33: }
|