Class DsmlMessage
- java.lang.Object
-
- org.openehealth.ipf.commons.ihe.hpd.stub.dsmlv2.DsmlMessage
-
- Direct Known Subclasses:
AbandonRequest,AddRequest,AuthRequest,CompareRequest,DelRequest,ExtendedRequest,LDAPResult,ModifyDNRequest,ModifyRequest,SearchRequest,SearchResultEntry,SearchResultReference
public class DsmlMessage extends Object
Java class for DsmlMessage complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="DsmlMessage"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="control" type="{urn:oasis:names:tc:DSML:2:0:core}Control" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="requestID" type="{urn:oasis:names:tc:DSML:2:0:core}RequestID" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description DsmlMessage()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Control>getControl()Gets the value of the control property.StringgetRequestID()Gets the value of the requestID property.voidsetRequestID(String value)Sets the value of the requestID property.
-
-
-
Method Detail
-
getControl
public List<Control> getControl()
Gets the value of the control 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 control property.For example, to add a new item, do as follows:
getControl().add(newItem);Objects of the following type(s) are allowed in the list
Control
-
getRequestID
public String getRequestID()
Gets the value of the requestID property.- Returns:
- possible object is
String
-
-