Package be.recipe.services.executor
Class ListNotificationsResult
- java.lang.Object
-
- be.recipe.services.core.ResponseType
-
- be.recipe.services.executor.ListNotificationsResult
-
public class ListNotificationsResult extends ResponseType
Java class for ListNotificationsResult complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ListNotificationsResult"> <complexContent> <extension base="{http:/services.recipe.be/core}ResponseType"> <sequence> <element name="notifications" type="{http:/services.recipe.be/executor}ListNotificationsItem" maxOccurs="unbounded" minOccurs="0"/> <element name="hasMoreResults" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected BooleanhasMoreResultsprotected List<ListNotificationsItem>notifications-
Fields inherited from class be.recipe.services.core.ResponseType
id, responseStatus, status
-
-
Constructor Summary
Constructors Constructor Description ListNotificationsResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BooleangetHasMoreResults()List<ListNotificationsItem>getNotifications()Gets the value of the notifications property.BooleanisHasMoreResults()Gets the value of the hasMoreResults property.voidsetHasMoreResults(Boolean value)Sets the value of the hasMoreResults property.-
Methods inherited from class be.recipe.services.core.ResponseType
getId, getResponseStatus, getStatus, setId, setResponseStatus, setStatus
-
-
-
-
Field Detail
-
notifications
protected List<ListNotificationsItem> notifications
-
hasMoreResults
protected Boolean hasMoreResults
-
-
Method Detail
-
getNotifications
public List<ListNotificationsItem> getNotifications()
Gets the value of the notifications property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the notifications property.For example, to add a new item, do as follows:
getNotifications().add(newItem);Objects of the following type(s) are allowed in the list
ListNotificationsItem
-
isHasMoreResults
public Boolean isHasMoreResults()
Gets the value of the hasMoreResults property.- Returns:
- possible object is
Boolean
-
setHasMoreResults
public void setHasMoreResults(Boolean value)
Sets the value of the hasMoreResults property.- Parameters:
value- allowed object isBoolean
-
getHasMoreResults
public Boolean getHasMoreResults()
-
-