Class RequestAbstractType
- java.lang.Object
-
- org.apache.cxf.xkms.model.xkms.MessageAbstractType
-
- org.apache.cxf.xkms.model.xkms.RequestAbstractType
-
- Direct Known Subclasses:
CompoundRequestType,LocateRequestType,PendingRequestType,RecoverRequestType,RegisterRequestType,ReissueRequestType,RevokeRequestType,ValidateRequestType
public abstract class RequestAbstractType extends MessageAbstractType
Java class for RequestAbstractType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="RequestAbstractType"> <complexContent> <extension base="{http://www.w3.org/2002/03/xkms#}MessageAbstractType"> <sequence> <element ref="{http://www.w3.org/2002/03/xkms#}ResponseMechanism" maxOccurs="unbounded" minOccurs="0"/> <element ref="{http://www.w3.org/2002/03/xkms#}RespondWith" maxOccurs="unbounded" minOccurs="0"/> <element ref="{http://www.w3.org/2002/03/xkms#}PendingNotification" minOccurs="0"/> </sequence> <attribute name="OriginalRequestId" type="{http://www.w3.org/2001/XMLSchema}NCName" /> <attribute name="ResponseLimit" type="{http://www.w3.org/2001/XMLSchema}integer" /> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected StringoriginalRequestIdprotected PendingNotificationTypependingNotificationprotected List<String>respondWithprotected BigIntegerresponseLimitprotected List<String>responseMechanism-
Fields inherited from class org.apache.cxf.xkms.model.xkms.MessageAbstractType
id, messageExtension, nonce, opaqueClientData, service, signature
-
-
Constructor Summary
Constructors Constructor Description RequestAbstractType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetOriginalRequestId()Gets the value of the originalRequestId property.PendingNotificationTypegetPendingNotification()Gets the value of the pendingNotification property.List<String>getRespondWith()Gets the value of the respondWith property.BigIntegergetResponseLimit()Gets the value of the responseLimit property.List<String>getResponseMechanism()Gets the value of the responseMechanism property.voidsetOriginalRequestId(String value)Sets the value of the originalRequestId property.voidsetPendingNotification(PendingNotificationType value)Sets the value of the pendingNotification property.voidsetResponseLimit(BigInteger value)Sets the value of the responseLimit property.-
Methods inherited from class org.apache.cxf.xkms.model.xkms.MessageAbstractType
getId, getMessageExtension, getNonce, getOpaqueClientData, getService, getSignature, setId, setNonce, setOpaqueClientData, setService, setSignature
-
-
-
-
Field Detail
-
pendingNotification
protected PendingNotificationType pendingNotification
-
originalRequestId
protected String originalRequestId
-
responseLimit
protected BigInteger responseLimit
-
-
Method Detail
-
getResponseMechanism
public List<String> getResponseMechanism()
Gets the value of the responseMechanism 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 responseMechanism property.For example, to add a new item, do as follows:
getResponseMechanism().add(newItem);Objects of the following type(s) are allowed in the list
String
-
getRespondWith
public List<String> getRespondWith()
Gets the value of the respondWith 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 respondWith property.For example, to add a new item, do as follows:
getRespondWith().add(newItem);Objects of the following type(s) are allowed in the list
String
-
getPendingNotification
public PendingNotificationType getPendingNotification()
Gets the value of the pendingNotification property.- Returns:
- possible object is
PendingNotificationType
-
setPendingNotification
public void setPendingNotification(PendingNotificationType value)
Sets the value of the pendingNotification property.- Parameters:
value- allowed object isPendingNotificationType
-
getOriginalRequestId
public String getOriginalRequestId()
Gets the value of the originalRequestId property.- Returns:
- possible object is
String
-
setOriginalRequestId
public void setOriginalRequestId(String value)
Sets the value of the originalRequestId property.- Parameters:
value- allowed object isString
-
getResponseLimit
public BigInteger getResponseLimit()
Gets the value of the responseLimit property.- Returns:
- possible object is
BigInteger
-
setResponseLimit
public void setResponseLimit(BigInteger value)
Sets the value of the responseLimit property.- Parameters:
value- allowed object isBigInteger
-
-