Package nl.b3p.csw.jaxb.gml
Class IndirectEntryType
- java.lang.Object
-
- nl.b3p.csw.jaxb.gml.IndirectEntryType
-
public class IndirectEntryType extends Object
An entry in a dictionary of definitions that contains a GML object which references a remote definition object. This entry is expected to be convenient in allowing multiple elements in one XML document to contain short (abbreviated XPointer) references, which are resolved to an external definition provided in a Dictionary element in the same XML document. Specialized descendents of this dictionaryEntry might be restricted in an application schema to allow only including specified types of definitions as valid entries in a dictionary.Java class for IndirectEntryType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="IndirectEntryType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{http://www.opengis.net/gml}DefinitionProxy"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected DefinitionProxydefinitionProxy
-
Constructor Summary
Constructors Constructor Description IndirectEntryType()Default no-arg constructorIndirectEntryType(DefinitionProxy definitionProxy)Fully-initialising value constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DefinitionProxygetDefinitionProxy()Gets the value of the definitionProxy property.voidsetDefinitionProxy(DefinitionProxy value)Sets the value of the definitionProxy property.
-
-
-
Field Detail
-
definitionProxy
protected DefinitionProxy definitionProxy
-
-
Constructor Detail
-
IndirectEntryType
public IndirectEntryType()
Default no-arg constructor
-
IndirectEntryType
public IndirectEntryType(DefinitionProxy definitionProxy)
Fully-initialising value constructor
-
-
Method Detail
-
getDefinitionProxy
public DefinitionProxy getDefinitionProxy()
Gets the value of the definitionProxy property.- Returns:
- possible object is
DefinitionProxy
-
setDefinitionProxy
public void setDefinitionProxy(DefinitionProxy value)
Sets the value of the definitionProxy property.- Parameters:
value- allowed object isDefinitionProxy
-
-