Package ch.ivyteam.ivy.security
Interface IUserEMailNotificationSettings
-
- All Superinterfaces:
IEMailNotificationSettings
public interface IUserEMailNotificationSettings extends IEMailNotificationSettings
The email notification settings for anIUser
.- Since:
- 28.06.2010
- See Also:
IUser.getEMailNotificationSettings()
,IUser.setEMailNotificationSettings(IUserEMailNotificationSettings)
- API:
- This is a public API.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isUseApplicationDefault()
Gets if the default settings of the application should be used or not.void
setUseApplicationDefault(boolean useApplicationDefault)
Sets if the default settings of the application should be used or not.-
Methods inherited from interface ch.ivyteam.ivy.security.IEMailNotificationSettings
getSendDailyTaskSummary, isNotificationDisabled, isSendDailyTaskSummaryOnDay, isSendOnNewWorkTasks, setNotificationDisabled, setSendDailyTaskSummary, setSendDailyTaskSummaryOnDay, setSendOnNewWorkTasks
-
-
-
-
Method Detail
-
isUseApplicationDefault
boolean isUseApplicationDefault()
Gets if the default settings of the application should be used or not.If
true
all the other notification settings of the user are ignored and the default settings of the application are used.- Returns:
true
if the default settings of the application should be used,false
if this settings should be used.- API:
- This public API is available in IvyScript and Java. It has the visibility ADVANCED.
-
setUseApplicationDefault
void setUseApplicationDefault(boolean useApplicationDefault)
Sets if the default settings of the application should be used or not.If
true
all the other notification settings of the user are ignored and the default settings of the application are used.- Parameters:
useApplicationDefault
- iftrue
the default settings of the application should be used, iffalse
this settings should b used.- API:
- This public API is available in IvyScript and Java. It has the visibility ADVANCED.
-
-