1: package org.drools.util; 2: 3: import java.io.Serializable; 4: 5: public interface Iterator extends Serializable { 6: public Object next(); 7: }