Class SchemaExtractMapBean
- java.lang.Object
-
- com.avoka.fc.core.service.composer.SchemaExtractMapBean
-
public class SchemaExtractMapBean extends Object
A bean class holding a schema extract mapping contained in a form archive.- Since:
- 4.3.0
-
-
Field Summary
Fields Modifier and Type Field Description String
name
The name of the mappingboolean
repeat
Whether to extract repeating data (multiple values per data extract)boolean
searchable
Whether the dataExtract is searchableboolean
shareDataPublish
Whether to publish values obtained from this mapping to other submissions in the bundleboolean
shareDataSubscribe
Whether to subscribe to values published by other submissions in the bundleString
xpath
The XPath of the mapping
-
Constructor Summary
Constructors Constructor Description SchemaExtractMapBean()
Create a basic uninitialized bean instance.SchemaExtractMapBean(SchemaExtractMap schemaExtractMap)
Create a bean instance based on an existing SchemaExtractMap
-
-
-
Field Detail
-
name
public String name
The name of the mapping
-
xpath
public String xpath
The XPath of the mapping
-
repeat
public boolean repeat
Whether to extract repeating data (multiple values per data extract)
-
shareDataPublish
public boolean shareDataPublish
Whether to publish values obtained from this mapping to other submissions in the bundle
-
shareDataSubscribe
public boolean shareDataSubscribe
Whether to subscribe to values published by other submissions in the bundle
-
searchable
public boolean searchable
Whether the dataExtract is searchable- Since:
- 5.1.3
-
-
Constructor Detail
-
SchemaExtractMapBean
public SchemaExtractMapBean()
Create a basic uninitialized bean instance.
-
SchemaExtractMapBean
public SchemaExtractMapBean(SchemaExtractMap schemaExtractMap)
Create a bean instance based on an existing SchemaExtractMap- Parameters:
schemaExtractMap
- the schemaExtractMap (required)- Since:
- 5.1.5.1
-
-