public FactHandle getFactHandle(Object object) {
return this.commandService.execute( new GetFactHandleCommand( object ) );
}
public <T extends org.drools.runtime.rule.FactHandle> Collection< T > getFactHandles() {
return (Collection<T>) this.commandService.execute( new GetFactHandlesCommand() );
}