Class MultistatResponseElementType
- java.lang.Object
-
- org.oasis_open.docs.ns.wscal.calws_soap.MultistatResponseElementType
-
public class MultistatResponseElementType extends Object
One part of a MultistatusJava class for MultistatResponseElementType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="MultistatResponseElementType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="href" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="etoken" type="{http://www.w3.org/2001/XMLSchema}string"/> <element ref="{http://docs.oasis-open.org/ns/wscal/calws-soap}propstat" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description MultistatResponseElementType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetEtoken()Gets the value of the etoken property.StringgetHref()Gets the value of the href property.List<PropstatType>getPropstat()Gets the value of the propstat property.voidsetEtoken(String value)Sets the value of the etoken property.voidsetHref(String value)Sets the value of the href property.
-
-
-
Field Detail
-
href
protected String href
-
etoken
protected String etoken
-
propstat
protected List<PropstatType> propstat
-
-
Method Detail
-
getHref
public String getHref()
Gets the value of the href property.- Returns:
- possible object is
String
-
setHref
public void setHref(String value)
Sets the value of the href property.- Parameters:
value- allowed object isString
-
getEtoken
public String getEtoken()
Gets the value of the etoken property.- Returns:
- possible object is
String
-
setEtoken
public void setEtoken(String value)
Sets the value of the etoken property.- Parameters:
value- allowed object isString
-
getPropstat
public List<PropstatType> getPropstat()
Gets the value of the propstat 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 propstat property.For example, to add a new item, do as follows:
getPropstat().add(newItem);Objects of the following type(s) are allowed in the list
PropstatType
-
-