Package nl.b3p.csw.jaxb.csw
Class AcknowledgementType
- java.lang.Object
-
- nl.b3p.csw.jaxb.csw.AcknowledgementType
-
public class AcknowledgementType extends Object
This is a general acknowledgement response message for all requests that may be processed in an asynchronous manner. EchoedRequest - Echoes the submitted request message RequestId - identifier for polling purposes (if no response handler is available, or the URL scheme is unsupported)Java class for AcknowledgementType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="AcknowledgementType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="EchoedRequest" type="{http://www.opengis.net/cat/csw/2.0.2}EchoedRequestType"/> <element name="RequestId" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/> </sequence> <attribute name="timeStamp" use="required" type="{http://www.w3.org/2001/XMLSchema}dateTime" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected EchoedRequestTypeechoedRequestprotected StringrequestIdprotected XMLGregorianCalendartimeStamp
-
Constructor Summary
Constructors Constructor Description AcknowledgementType()Default no-arg constructorAcknowledgementType(EchoedRequestType echoedRequest, String requestId, XMLGregorianCalendar timeStamp)Fully-initialising value constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EchoedRequestTypegetEchoedRequest()Gets the value of the echoedRequest property.StringgetRequestId()Gets the value of the requestId property.XMLGregorianCalendargetTimeStamp()Gets the value of the timeStamp property.voidsetEchoedRequest(EchoedRequestType value)Sets the value of the echoedRequest property.voidsetRequestId(String value)Sets the value of the requestId property.voidsetTimeStamp(XMLGregorianCalendar value)Sets the value of the timeStamp property.
-
-
-
Field Detail
-
echoedRequest
protected EchoedRequestType echoedRequest
-
requestId
protected String requestId
-
timeStamp
protected XMLGregorianCalendar timeStamp
-
-
Constructor Detail
-
AcknowledgementType
public AcknowledgementType()
Default no-arg constructor
-
AcknowledgementType
public AcknowledgementType(EchoedRequestType echoedRequest, String requestId, XMLGregorianCalendar timeStamp)
Fully-initialising value constructor
-
-
Method Detail
-
getEchoedRequest
public EchoedRequestType getEchoedRequest()
Gets the value of the echoedRequest property.- Returns:
- possible object is
EchoedRequestType
-
setEchoedRequest
public void setEchoedRequest(EchoedRequestType value)
Sets the value of the echoedRequest property.- Parameters:
value- allowed object isEchoedRequestType
-
getRequestId
public String getRequestId()
Gets the value of the requestId property.- Returns:
- possible object is
String
-
setRequestId
public void setRequestId(String value)
Sets the value of the requestId property.- Parameters:
value- allowed object isString
-
getTimeStamp
public XMLGregorianCalendar getTimeStamp()
Gets the value of the timeStamp property.- Returns:
- possible object is
XMLGregorianCalendar
-
setTimeStamp
public void setTimeStamp(XMLGregorianCalendar value)
Sets the value of the timeStamp property.- Parameters:
value- allowed object isXMLGregorianCalendar
-
-