Class StatusType
- java.lang.Object
-
- org.apache.cxf.xkms.model.xkms.StatusType
-
public class StatusType extends Object
Java class for StatusType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="StatusType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{http://www.w3.org/2002/03/xkms#}ValidReason" maxOccurs="unbounded" minOccurs="0"/> <element ref="{http://www.w3.org/2002/03/xkms#}IndeterminateReason" maxOccurs="unbounded" minOccurs="0"/> <element ref="{http://www.w3.org/2002/03/xkms#}InvalidReason" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="StatusValue" use="required" type="{http://www.w3.org/2002/03/xkms#}KeyBindingEnum" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<String>indeterminateReasonprotected List<String>invalidReasonprotected KeyBindingEnumstatusValueprotected List<String>validReason
-
Constructor Summary
Constructors Constructor Description StatusType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>getIndeterminateReason()Gets the value of the indeterminateReason property.List<String>getInvalidReason()Gets the value of the invalidReason property.KeyBindingEnumgetStatusValue()Gets the value of the statusValue property.List<String>getValidReason()Gets the value of the validReason property.voidsetStatusValue(KeyBindingEnum value)Sets the value of the statusValue property.
-
-
-
Method Detail
-
getValidReason
public List<String> getValidReason()
Gets the value of the validReason 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 validReason property.For example, to add a new item, do as follows:
getValidReason().add(newItem);Objects of the following type(s) are allowed in the list
String
-
getIndeterminateReason
public List<String> getIndeterminateReason()
Gets the value of the indeterminateReason 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 indeterminateReason property.For example, to add a new item, do as follows:
getIndeterminateReason().add(newItem);Objects of the following type(s) are allowed in the list
String
-
getInvalidReason
public List<String> getInvalidReason()
Gets the value of the invalidReason 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 invalidReason property.For example, to add a new item, do as follows:
getInvalidReason().add(newItem);Objects of the following type(s) are allowed in the list
String
-
getStatusValue
public KeyBindingEnum getStatusValue()
Gets the value of the statusValue property.- Returns:
- possible object is
KeyBindingEnum
-
setStatusValue
public void setStatusValue(KeyBindingEnum value)
Sets the value of the statusValue property.- Parameters:
value- allowed object isKeyBindingEnum
-
-