13 lines
284 B
Plaintext
13 lines
284 B
Plaintext
package drools
|
|
|
|
import com.iqser.red.service.redaction.v1.server.redaction.model.Section
|
|
|
|
global Section section
|
|
|
|
|
|
rule "1: Find headlines"
|
|
when
|
|
Section(text.length() > 1)
|
|
then
|
|
section.redactHeadline("headline", 1, "Headline found", "n-a.",dictionary);
|
|
end |