01: package org.drools;
02:
03: import java.util.Random;
04:
05: public class RandomNumber {
06: private int randomNumber;
07:
08: public void begin() {
09: this .randomNumber = new Random().nextInt(100);
10: }
11:
12: public void setValue(final int value) {
13: this .randomNumber = value;
14: }
15:
16: public int getValue() {
17: return this.randomNumber;
18: }
19:
20: }
|