Interface ICustomizationMailCondition
-
- All Superinterfaces:
com4j.Com4jObject
public interface ICustomizationMailCondition extends com4j.Com4jObject
The configuration of a custom automatic mail notification.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
conditionText()
The filter to determine when the notification is sent.void
conditionText(java.lang.String pVal)
The filter to determine when the notification is sent.int
conditionType()
The type of condition.boolean
deleted()
Indicates if the condition has been removed, but the deletion has not been posted to the server.void
deleted(boolean pVal)
Indicates if the condition has been removed, but the deletion has not been posted to the server.java.lang.String
name()
The name of the mail recipient or the field containing the name.boolean
updated()
Indicates if the condition object has changed locally since last synchronized with the server.void
updated(boolean pVal)
Indicates if the condition object has changed locally since last synchronized with the server.
-
-
-
Method Detail
-
name
java.lang.String name()
The name of the mail recipient or the field containing the name.
Getter method for the COM property "Name"
- Returns:
- Returns a value of type java.lang.String
-
conditionText
java.lang.String conditionText()
The filter to determine when the notification is sent.
Getter method for the COM property "ConditionText"
- Returns:
- Returns a value of type java.lang.String
-
conditionText
void conditionText(java.lang.String pVal)
The filter to determine when the notification is sent.
Setter method for the COM property "ConditionText"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
updated
boolean updated()
Indicates if the condition object has changed locally since last synchronized with the server.
Getter method for the COM property "Updated"
- Returns:
- Returns a value of type boolean
-
updated
void updated(boolean pVal)
Indicates if the condition object has changed locally since last synchronized with the server.
Setter method for the COM property "Updated"
- Parameters:
pVal
- Mandatory boolean parameter.
-
deleted
boolean deleted()
Indicates if the condition has been removed, but the deletion has not been posted to the server.
Getter method for the COM property "Deleted"
- Returns:
- Returns a value of type boolean
-
deleted
void deleted(boolean pVal)
Indicates if the condition has been removed, but the deletion has not been posted to the server.
Setter method for the COM property "Deleted"
- Parameters:
pVal
- Mandatory boolean parameter.
-
conditionType
int conditionType()
The type of condition.
Getter method for the COM property "ConditionType"
- Returns:
- Returns a value of type int
-
-