Class MessageSelectFilterCfg
java.lang.Object
de.uplanet.lucy.server.mailservice.workflow.eventsource.MessageSelectFilterCfg
-
Method Summary
Modifier and TypeMethodDescriptionbooleanisAll()Filter all messages.booleanisNone()Filter no messages.booleanFilter unseen messages.booleanisSeen()Filter seen messages.voidsetAll(boolean p_bAll) Filter all messages.voidsetNone(boolean p_bNone) Filter no messages.voidsetNotSeen(boolean p_bNotSeen) Filter unseen messages.voidsetSeen(boolean p_bSeen) Filter seen messages.
-
Method Details
-
isAll
public boolean isAll()Filter all messages.This property is mutually exclusive with
none.- Returns:
trueif all messages should be accepted, orfalseotherwise.
-
setAll
public void setAll(boolean p_bAll) Filter all messages.This property is mutually exclusive with
none.- Parameters:
p_bAll-trueif all messages should be accepted, orfalseotherwise.
-
isNone
public boolean isNone()Filter no messages.This property is mutually exclusive with
all.- Returns:
trueif no messages should be accepted, orfalseotherwise.
-
setNone
public void setNone(boolean p_bNone) Filter no messages.This property is mutually exclusive with
all.- Parameters:
p_bNone-trueif no messages should be accepted, orfalseotherwise.
-
isSeen
public boolean isSeen()Filter seen messages.This property is mutually exclusive with
notSeen.- Returns:
trueif seen messages should be accepted, orfalseotherwise.
-
setSeen
public void setSeen(boolean p_bSeen) Filter seen messages.This property is mutually exclusive with
notSeen.- Parameters:
p_bSeen-trueif seen messages should be accepted, orfalseotherwise.
-
isNotSeen
public boolean isNotSeen()Filter unseen messages.This property is mutually exclusive with
seen.- Returns:
trueif unseen messages should be accepted, orfalseotherwise.
-
setNotSeen
public void setNotSeen(boolean p_bNotSeen) Filter unseen messages.This property is mutually exclusive with
seen.- Parameters:
p_bNotSeen-trueif unseen messages should be accepted, orfalseotherwise.
-