Package gov.nasa.pds.search.core.schema
Class Product
- java.lang.Object
-
- gov.nasa.pds.search.core.schema.Product
-
public class Product extends Object
Java class for Product complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Product"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{}specification"/> <element ref="{}indexFields"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected IndexField
indexFields
protected Specification
specification
-
Constructor Summary
Constructors Constructor Description Product()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IndexField
getIndexFields()
Gets the value of the indexFields property.Specification
getSpecification()
Gets the value of the specification property.void
setIndexFields(IndexField value)
Sets the value of the indexFields property.void
setSpecification(Specification value)
Sets the value of the specification property.
-
-
-
Field Detail
-
specification
protected Specification specification
-
indexFields
protected IndexField indexFields
-
-
Method Detail
-
getSpecification
public Specification getSpecification()
Gets the value of the specification property.- Returns:
- possible object is
Specification
-
setSpecification
public void setSpecification(Specification value)
Sets the value of the specification property.- Parameters:
value
- allowed object isSpecification
-
getIndexFields
public IndexField getIndexFields()
Gets the value of the indexFields property.- Returns:
- possible object is
IndexField
-
setIndexFields
public void setIndexFields(IndexField value)
Sets the value of the indexFields property.- Parameters:
value
- allowed object isIndexField
-
-