Package de.xima.fc.formstore
Class StoreFormMeta
- java.lang.Object
- 
- de.xima.fc.formstore.StoreFormMeta
 
- 
- All Implemented Interfaces:
- Serializable
 
 public final class StoreFormMeta extends Object implements Serializable Model that describes the meta information provided in a project file from the form store. The project file is a ZIP file withmetadata.jsonthat contains this data.- Since:
- 7.1.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description StoreFormMeta()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetMinFormcycleVersion()List<StoreFormPluginInfo>getRequiredPlugins()StringgetUuid()voidsetMinFormcycleVersion(String minFormcycleVersion)voidsetRequiredPlugins(List<StoreFormPluginInfo> requiredPlugins)voidsetUuid(String uuid)
 
- 
- 
- 
Method Detail- 
getMinFormcycleVersionpublic String getMinFormcycleVersion() - Returns:
- Minimum FORMCYCLE version required for the form, e.g. "3.4.0"
 
 - 
setMinFormcycleVersionpublic void setMinFormcycleVersion(String minFormcycleVersion) - Parameters:
- minFormcycleVersion- Minimum FORMCYCLE version required for the form, e.g. "3.4.0"
 
 - 
getRequiredPluginspublic List<StoreFormPluginInfo> getRequiredPlugins() - Returns:
- Plugins that need to be installed for the form to function properly.
 
 - 
setRequiredPluginspublic void setRequiredPlugins(List<StoreFormPluginInfo> requiredPlugins) - Parameters:
- requiredPlugins- Plugins that need to be installed for the form to function properly.
 
 - 
getUuidpublic String getUuid() - Returns:
- Unique ID identifying the form. Can be used to check whether the form exists in the system already.
 
 - 
setUuidpublic void setUuid(String uuid) - Parameters:
- uuid- Unique ID identifying the form. Can be used to check whether the form exists in the system already.
 
 
- 
 
-