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.json
that contains this data.- Since:
- 8.0.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description StoreFormMeta()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getMinFormcycleVersion()
List<StoreFormPluginInfo>
getRequiredPlugins()
String
getUuid()
void
setMinFormcycleVersion(String minFormcycleVersion)
void
setRequiredPlugins(List<StoreFormPluginInfo> requiredPlugins)
void
setUuid(String uuid)
-
-
-
Method Detail
-
getMinFormcycleVersion
public String getMinFormcycleVersion()
- Returns:
- Minimum formcycle version required for the form, e.g. "3.4.0"
-
setMinFormcycleVersion
public void setMinFormcycleVersion(String minFormcycleVersion)
- Parameters:
minFormcycleVersion
- Minimum formcycle version required for the form, e.g. "3.4.0"
-
getRequiredPlugins
public List<StoreFormPluginInfo> getRequiredPlugins()
- Returns:
- Plugins that need to be installed for the form to function properly.
-
setRequiredPlugins
public void setRequiredPlugins(List<StoreFormPluginInfo> requiredPlugins)
- Parameters:
requiredPlugins
- Plugins that need to be installed for the form to function properly.
-
getUuid
public String getUuid()
- Returns:
- Unique ID identifying the form. Can be used to check whether the form exists in the system already.
-
setUuid
public void setUuid(String uuid)
- Parameters:
uuid
- Unique ID identifying the form. Can be used to check whether the form exists in the system already.
-
-