public class MfMailIsStatusMail extends java.lang.Object implements CustomCondition
| Constructor and Description |
|---|
MfMailIsStatusMail() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
evaluateCondition(MboRemote inboundComm,
java.lang.Object arg1)
Evaluate the condition.
|
java.lang.String |
toWhereClause(java.lang.Object arg0,
MboSetRemote arg1)
Convert the condition to a where clause.
|
public boolean evaluateCondition(MboRemote inboundComm, java.lang.Object arg1) throws MXException, java.rmi.RemoteException
CustomConditionFor data restrictions having a condition (SecurityRestrict other than object Qualified), the object framework will call this method for each Mbo and set the Mbo and MboValue flags appropriately.
evaluateCondition in interface CustomConditioninboundComm - The mbo to be evaluatedarg1 - Any object of parameter that is understood by the condition class.
For data restrictions, this param is not used. To use it, some of the framework logic
must be overridden in the Mbo.MXExceptionjava.rmi.RemoteExceptionSecurityRestrict,
Condition,
Mbo.evaluateRestriction(psdi.mbo.DataRestriction),
Mbo.evaluateCtrlConditions(java.util.HashSet),
Mbo.evaluateCondition(java.lang.String, boolean)public java.lang.String toWhereClause(java.lang.Object arg0,
MboSetRemote arg1)
throws MXException,
java.rmi.RemoteException
CustomConditionFor qualified object data restrictions (SecurityRestrict) having a condition type of Class, the object framework (MboSet) will call this method to construct the Where clause.
toWhereClause in interface CustomConditionarg0 - For data restrictions, this is not used by the object framework. To use param
you must override some of the framework logic in your MboSet.arg1 - The MboSet whose Where clause is being constructedMXExceptionjava.rmi.RemoteExceptionSecurityRestrict,
Condition,
MboSet.getQualifiedWhere()