Package nl.b3p.csw.jaxb.csw
Class DescribeRecordResponseType
- java.lang.Object
-
- nl.b3p.csw.jaxb.csw.DescribeRecordResponseType
-
public class DescribeRecordResponseType extends Object
The response contains a list of matching schema components in the requested schema language.Java class for DescribeRecordResponseType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="DescribeRecordResponseType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="SchemaComponent" type="{http://www.opengis.net/cat/csw/2.0.2}SchemaComponentType" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<SchemaComponentType>schemaComponent
-
Constructor Summary
Constructors Constructor Description DescribeRecordResponseType()Default no-arg constructorDescribeRecordResponseType(List<SchemaComponentType> schemaComponent)Fully-initialising value constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<SchemaComponentType>getSchemaComponent()Gets the value of the schemaComponent property.
-
-
-
Field Detail
-
schemaComponent
protected List<SchemaComponentType> schemaComponent
-
-
Constructor Detail
-
DescribeRecordResponseType
public DescribeRecordResponseType()
Default no-arg constructor
-
DescribeRecordResponseType
public DescribeRecordResponseType(List<SchemaComponentType> schemaComponent)
Fully-initialising value constructor
-
-
Method Detail
-
getSchemaComponent
public List<SchemaComponentType> getSchemaComponent()
Gets the value of the schemaComponent 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 schemaComponent property.For example, to add a new item, do as follows:
getSchemaComponent().add(newItem);Objects of the following type(s) are allowed in the list
SchemaComponentType
-
-