Class SearchResponse
- java.lang.Object
-
- org.openehealth.ipf.commons.ihe.hpd.stub.dsmlv2.SearchResponse
-
public class SearchResponse extends Object
Java class for SearchResponse complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="SearchResponse"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="searchResultEntry" type="{urn:oasis:names:tc:DSML:2:0:core}SearchResultEntry" maxOccurs="unbounded" minOccurs="0"/> <element name="searchResultReference" type="{urn:oasis:names:tc:DSML:2:0:core}SearchResultReference" maxOccurs="unbounded" minOccurs="0"/> <element name="searchResultDone" type="{urn:oasis:names:tc:DSML:2:0:core}LDAPResult"/> </sequence> <attribute name="requestID" type="{urn:oasis:names:tc:DSML:2:0:core}RequestID" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected String
requestID
protected LDAPResult
searchResultDone
protected List<SearchResultEntry>
searchResultEntry
protected List<SearchResultReference>
searchResultReference
-
Constructor Summary
Constructors Constructor Description SearchResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getRequestID()
Gets the value of the requestID property.LDAPResult
getSearchResultDone()
Gets the value of the searchResultDone property.List<SearchResultEntry>
getSearchResultEntry()
Gets the value of the searchResultEntry property.List<SearchResultReference>
getSearchResultReference()
Gets the value of the searchResultReference property.void
setRequestID(String value)
Sets the value of the requestID property.void
setSearchResultDone(LDAPResult value)
Sets the value of the searchResultDone property.
-
-
-
Field Detail
-
searchResultEntry
protected List<SearchResultEntry> searchResultEntry
-
searchResultReference
protected List<SearchResultReference> searchResultReference
-
searchResultDone
protected LDAPResult searchResultDone
-
requestID
protected String requestID
-
-
Method Detail
-
getSearchResultEntry
public List<SearchResultEntry> getSearchResultEntry()
Gets the value of the searchResultEntry 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
set
method for the searchResultEntry property.For example, to add a new item, do as follows:
getSearchResultEntry().add(newItem);
Objects of the following type(s) are allowed in the list
SearchResultEntry
-
getSearchResultReference
public List<SearchResultReference> getSearchResultReference()
Gets the value of the searchResultReference 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
set
method for the searchResultReference property.For example, to add a new item, do as follows:
getSearchResultReference().add(newItem);
Objects of the following type(s) are allowed in the list
SearchResultReference
-
getSearchResultDone
public LDAPResult getSearchResultDone()
Gets the value of the searchResultDone property.- Returns:
- possible object is
LDAPResult
-
setSearchResultDone
public void setSearchResultDone(LDAPResult value)
Sets the value of the searchResultDone property.- Parameters:
value
- allowed object isLDAPResult
-
getRequestID
public String getRequestID()
Gets the value of the requestID property.- Returns:
- possible object is
String
-
-