Class IsApprovedResponseType
- java.lang.Object
-
- org.certificateservices.messages.csmessages.jaxb.CSResponse
-
- org.certificateservices.messages.csmessages.jaxb.IsApprovedResponseType
-
public class IsApprovedResponseType extends CSResponse
Java class for IsApprovedResponseType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="IsApprovedResponseType"> <complexContent> <extension base="{http://certificateservices.org/xsd/csmessages2_0}CSResponse"> <sequence> <element name="approvalId" type="{http://certificateservices.org/xsd/csmessages2_0}notemptystring"/> <element name="approvalStatus" type="{http://certificateservices.org/xsd/csmessages2_0}ApprovalStatus"/> <element name="assertions" type="{http://certificateservices.org/xsd/csmessages2_0}Assertions" maxOccurs="unbounded" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.StringapprovalIdprotected ApprovalStatusapprovalStatusprotected java.util.List<Assertions>assertions-
Fields inherited from class org.certificateservices.messages.csmessages.jaxb.CSResponse
failureMessage, inResponseTo, status
-
-
Constructor Summary
Constructors Constructor Description IsApprovedResponseType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetApprovalId()Gets the value of the approvalId property.ApprovalStatusgetApprovalStatus()Gets the value of the approvalStatus property.java.util.List<Assertions>getAssertions()Gets the value of the assertions property.voidsetApprovalId(java.lang.String value)Sets the value of the approvalId property.voidsetApprovalStatus(ApprovalStatus value)Sets the value of the approvalStatus property.-
Methods inherited from class org.certificateservices.messages.csmessages.jaxb.CSResponse
getFailureMessage, getInResponseTo, getStatus, setFailureMessage, setInResponseTo, setStatus
-
-
-
-
Field Detail
-
approvalId
protected java.lang.String approvalId
-
approvalStatus
protected ApprovalStatus approvalStatus
-
assertions
protected java.util.List<Assertions> assertions
-
-
Method Detail
-
getApprovalId
public java.lang.String getApprovalId()
Gets the value of the approvalId property.- Returns:
- possible object is
String
-
setApprovalId
public void setApprovalId(java.lang.String value)
Sets the value of the approvalId property.- Parameters:
value- allowed object isString
-
getApprovalStatus
public ApprovalStatus getApprovalStatus()
Gets the value of the approvalStatus property.- Returns:
- possible object is
ApprovalStatus
-
setApprovalStatus
public void setApprovalStatus(ApprovalStatus value)
Sets the value of the approvalStatus property.- Parameters:
value- allowed object isApprovalStatus
-
getAssertions
public java.util.List<Assertions> getAssertions()
Gets the value of the assertions 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 assertions property.For example, to add a new item, do as follows:
getAssertions().add(newItem);Objects of the following type(s) are allowed in the list
Assertions
-
-