Interface IAlertable
-
- All Superinterfaces:
com4j.Com4jObject
- All Known Subinterfaces:
IAlertable2
public interface IAlertable extends com4j.Com4jObject
Services for managing auto-alerts.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
cleanAllAlerts()
Removes all current object alerts from the database.void
deleteAlert(java.lang.Object iDs)
Removes an alert or alerts associated with the current object from the database.com4j.Com4jObject
getAlert(int id)
Gets the alert specified by the alert ID.IList
getAlertList(boolean needRefresh)
Gets a list of all alerts associated with the object.boolean
hasAlerts()
Checks if any alerts are associated with the object.boolean
hasNewAlerts()
New, unread alerts are associated with the object.
-
-
-
Method Detail
-
deleteAlert
void deleteAlert(java.lang.Object iDs)
Removes an alert or alerts associated with the current object from the database.
- Parameters:
iDs
- Mandatory java.lang.Object parameter.
-
cleanAllAlerts
void cleanAllAlerts()
Removes all current object alerts from the database.
-
getAlert
com4j.Com4jObject getAlert(int id)
Gets the alert specified by the alert ID.
- Parameters:
id
- Mandatory int parameter.- Returns:
- Returns a value of type com4j.Com4jObject
-
getAlertList
IList getAlertList(@DefaultValue("0") boolean needRefresh)
Gets a list of all alerts associated with the object.
- Parameters:
needRefresh
- Optional parameter. Default value is false- Returns:
- Returns a value of type step.repository.alm.v16.otaclient.IList
-
hasAlerts
boolean hasAlerts()
Checks if any alerts are associated with the object.
- Returns:
- Returns a value of type boolean
-
hasNewAlerts
boolean hasNewAlerts()
New, unread alerts are associated with the object.
- Returns:
- Returns a value of type boolean
-
-