Package nl.b3p.csw.jaxb.csw
Class TransactionSummaryType
- java.lang.Object
-
- nl.b3p.csw.jaxb.csw.TransactionSummaryType
-
public class TransactionSummaryType extends Object
Reports the total number of catalogue items modified by a transaction request (i.e, inserted, updated, deleted). If the client did not specify a requestId, the server may assign one (a URI value).Java class for TransactionSummaryType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="TransactionSummaryType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="totalInserted" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" minOccurs="0"/> <element name="totalUpdated" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" minOccurs="0"/> <element name="totalDeleted" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" minOccurs="0"/> </sequence> <attribute name="requestId" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected StringrequestIdprotected BigIntegertotalDeletedprotected BigIntegertotalInsertedprotected BigIntegertotalUpdated
-
Constructor Summary
Constructors Constructor Description TransactionSummaryType()Default no-arg constructorTransactionSummaryType(BigInteger totalInserted, BigInteger totalUpdated, BigInteger totalDeleted, String requestId)Fully-initialising value constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetRequestId()Gets the value of the requestId property.BigIntegergetTotalDeleted()Gets the value of the totalDeleted property.BigIntegergetTotalInserted()Gets the value of the totalInserted property.BigIntegergetTotalUpdated()Gets the value of the totalUpdated property.voidsetRequestId(String value)Sets the value of the requestId property.voidsetTotalDeleted(BigInteger value)Sets the value of the totalDeleted property.voidsetTotalInserted(BigInteger value)Sets the value of the totalInserted property.voidsetTotalUpdated(BigInteger value)Sets the value of the totalUpdated property.
-
-
-
Field Detail
-
totalInserted
protected BigInteger totalInserted
-
totalUpdated
protected BigInteger totalUpdated
-
totalDeleted
protected BigInteger totalDeleted
-
requestId
protected String requestId
-
-
Constructor Detail
-
TransactionSummaryType
public TransactionSummaryType()
Default no-arg constructor
-
TransactionSummaryType
public TransactionSummaryType(BigInteger totalInserted, BigInteger totalUpdated, BigInteger totalDeleted, String requestId)
Fully-initialising value constructor
-
-
Method Detail
-
getTotalInserted
public BigInteger getTotalInserted()
Gets the value of the totalInserted property.- Returns:
- possible object is
BigInteger
-
setTotalInserted
public void setTotalInserted(BigInteger value)
Sets the value of the totalInserted property.- Parameters:
value- allowed object isBigInteger
-
getTotalUpdated
public BigInteger getTotalUpdated()
Gets the value of the totalUpdated property.- Returns:
- possible object is
BigInteger
-
setTotalUpdated
public void setTotalUpdated(BigInteger value)
Sets the value of the totalUpdated property.- Parameters:
value- allowed object isBigInteger
-
getTotalDeleted
public BigInteger getTotalDeleted()
Gets the value of the totalDeleted property.- Returns:
- possible object is
BigInteger
-
setTotalDeleted
public void setTotalDeleted(BigInteger value)
Sets the value of the totalDeleted property.- Parameters:
value- allowed object isBigInteger
-
getRequestId
public String getRequestId()
Gets the value of the requestId property.- Returns:
- possible object is
String
-
-