Package be.recipe.services.prescriber
Class ListFeedbacksResult
- java.lang.Object
-
- be.recipe.services.core.ResponseType
-
- be.recipe.services.prescriber.ListFeedbacksResult
-
public class ListFeedbacksResult extends ResponseType
Java class for listFeedbacksResult complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="listFeedbacksResult"> <complexContent> <extension base="{http:/services.recipe.be/core}ResponseType"> <sequence> <element name="feedbacks" type="{http:/services.recipe.be/prescriber}listFeedbackItem" maxOccurs="unbounded" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<ListFeedbackItem>feedbacks-
Fields inherited from class be.recipe.services.core.ResponseType
id, responseStatus, status
-
-
Constructor Summary
Constructors Constructor Description ListFeedbacksResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ListFeedbackItem>getFeedbacks()Gets the value of the feedbacks property.-
Methods inherited from class be.recipe.services.core.ResponseType
getId, getResponseStatus, getStatus, setId, setResponseStatus, setStatus
-
-
-
-
Field Detail
-
feedbacks
protected List<ListFeedbackItem> feedbacks
-
-
Method Detail
-
getFeedbacks
public List<ListFeedbackItem> getFeedbacks()
Gets the value of the feedbacks 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 feedbacks property.For example, to add a new item, do as follows:
getFeedbacks().add(newItem);Objects of the following type(s) are allowed in the list
ListFeedbackItem
-
-