01: /**
02: *
03: */package org.drools.base;
04:
05: import org.drools.FactHandle;
06: import org.drools.WorkingMemory;
07:
08: public class JavaFactRegistryEntry {
09: private WorkingMemory workingMemory;
10: private FactHandle handle;
11:
12: public JavaFactRegistryEntry(final WorkingMemory workingMemory,
13: final FactHandle handle) {
14: super ();
15: this .workingMemory = workingMemory;
16: this .handle = handle;
17: }
18:
19: public FactHandle getFactHandle() {
20: return this .handle;
21: }
22:
23: public WorkingMemory getWorkingMemory() {
24: return this.workingMemory;
25: }
26:
27: }
|