Class SearchResponse
- All Implemented Interfaces:
BatchResponseElement
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
Modifier and TypeFieldDescriptionprotected String
protected LDAPResult
protected List<SearchResultEntry>
protected List<SearchResultReference>
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionGets the value of the requestID property.Gets the value of the searchResultDone property.Gets the value of the searchResultEntry property.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 Details
-
searchResultEntry
-
searchResultReference
-
searchResultDone
-
requestID
-
-
Constructor Details
-
SearchResponse
public SearchResponse()
-
-
Method Details
-
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
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
Gets the value of the searchResultDone property.- Returns:
- possible object is
LDAPResult
-
setSearchResultDone
Sets the value of the searchResultDone property.- Parameters:
value
- allowed object isLDAPResult
-
getRequestID
Gets the value of the requestID property.- Returns:
- possible object is
String
-
setRequestID
Sets the value of the requestID property.- Parameters:
value
- allowed object isString
-