Package nl.b3p.csw.jaxb.csw
Class InsertResultType
- java.lang.Object
-
- nl.b3p.csw.jaxb.csw.InsertResultType
-
public class InsertResultType extends Object
Returns a "brief" view of any newly created catalogue records. The handle attribute may reference a particular statement in the corresponding transaction request.Java class for InsertResultType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="InsertResultType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{http://www.opengis.net/cat/csw/2.0.2}BriefRecord" maxOccurs="unbounded"/> </sequence> <attribute name="handleRef" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<BriefRecord>briefRecordprotected StringhandleRef
-
Constructor Summary
Constructors Constructor Description InsertResultType()Default no-arg constructorInsertResultType(List<BriefRecord> briefRecord, String handleRef)Fully-initialising value constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<BriefRecord>getBriefRecord()Gets the value of the briefRecord property.StringgetHandleRef()Gets the value of the handleRef property.voidsetHandleRef(String value)Sets the value of the handleRef property.
-
-
-
Field Detail
-
briefRecord
protected List<BriefRecord> briefRecord
-
handleRef
protected String handleRef
-
-
Constructor Detail
-
InsertResultType
public InsertResultType()
Default no-arg constructor
-
InsertResultType
public InsertResultType(List<BriefRecord> briefRecord, String handleRef)
Fully-initialising value constructor
-
-
Method Detail
-
getBriefRecord
public List<BriefRecord> getBriefRecord()
Gets the value of the briefRecord 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 briefRecord property.For example, to add a new item, do as follows:
getBriefRecord().add(newItem);Objects of the following type(s) are allowed in the list
BriefRecord
-
getHandleRef
public String getHandleRef()
Gets the value of the handleRef property.- Returns:
- possible object is
String
-
-