Class ModifyRequest
- java.lang.Object
-
- org.openehealth.ipf.commons.ihe.hpd.stub.dsmlv2.DsmlMessage
-
- org.openehealth.ipf.commons.ihe.hpd.stub.dsmlv2.ModifyRequest
-
public class ModifyRequest extends DsmlMessage
Java class for ModifyRequest complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ModifyRequest"> <complexContent> <extension base="{urn:oasis:names:tc:DSML:2:0:core}DsmlMessage"> <sequence> <element name="modification" type="{urn:oasis:names:tc:DSML:2:0:core}DsmlModification" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="dn" use="required" type="{urn:oasis:names:tc:DSML:2:0:core}DsmlDN" /> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected String
dn
protected List<DsmlModification>
modification
-
Fields inherited from class org.openehealth.ipf.commons.ihe.hpd.stub.dsmlv2.DsmlMessage
control, requestID
-
-
Constructor Summary
Constructors Constructor Description ModifyRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDn()
Gets the value of the dn property.List<DsmlModification>
getModification()
Gets the value of the modification property.void
setDn(String value)
Sets the value of the dn property.-
Methods inherited from class org.openehealth.ipf.commons.ihe.hpd.stub.dsmlv2.DsmlMessage
getControl, getRequestID, setRequestID
-
-
-
-
Field Detail
-
modification
protected List<DsmlModification> modification
-
dn
protected String dn
-
-
Method Detail
-
getModification
public List<DsmlModification> getModification()
Gets the value of the modification 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 modification property.For example, to add a new item, do as follows:
getModification().add(newItem);
Objects of the following type(s) are allowed in the list
DsmlModification
-
-