Uses of Class
com.avoka.fc.core.entity.VersionPropertyValue
-
Packages that use VersionPropertyValue Package Description com.avoka.fc.core.dao Provides the Data Access Objects used by SmartForm Manager.com.avoka.fc.core.entity Provides the SmartForm Manager entity classes.com.avoka.fc.core.entity.auto Provides the SmartForm Manager entity base classes, which are being maintained by Cayenne.com.avoka.fc.core.service.test Provides web automated test services. -
-
Uses of VersionPropertyValue in com.avoka.fc.core.dao
Methods in com.avoka.fc.core.dao that return VersionPropertyValue Modifier and Type Method Description VersionPropertyValue
VersionPropertyValueDao. createVersionPropertyValue(TemplateVersion templateVersion, Form form, PropertyType propertyType, String value)
Creates a new VersionPropertyValue for the given form, version and property.VersionPropertyValue
VersionPropertyValueDao. createVersionPropertyValue(TemplateVersion templateVersion, Form form, PropertyType propertyType, String value, String longValue)
Deprecated.longValue no longer exists - useVersionPropertyValueDao.createVersionPropertyValue(TemplateVersion, Form, PropertyType, String)
instead.VersionPropertyValue
VersionPropertyValueDao. getVersionPropertyValue(TemplateVersion version, String propertyName)
Return the VersionPropertyValue object for the given template version, property name and scope.VersionPropertyValue
VersionPropertyValueDao. getVersionPropertyValue(TemplateVersion version, String propertyName, String scope)
Return the VersionPropertyValue object for the given template version, property name and scope.VersionPropertyValue
VersionPropertyValueDao. getVersionPropertyValueFromPk(Object id)
Return the VersionPropertyValue object with the given OIDMethods in com.avoka.fc.core.dao that return types with arguments of type VersionPropertyValue Modifier and Type Method Description List<VersionPropertyValue>
VersionPropertyValueDao. getPropertyValues(TemplateVersion version, String scope)
Return the list of property values for a form version.List<VersionPropertyValue>
VersionPropertyValueDao. getPropertyValues(String templateVersionId)
Return the list of property values for a form versionList<VersionPropertyValue>
VersionPropertyValueDao. getTemplateVersionPropertyValues(TemplateVersion templateVersion)
Return the TemplateVersions property value list.List<VersionPropertyValue>
VersionPropertyValueDao. getVersionProperties(String propertyName, String scope)
Gets the version properties who have defined the property name and scope. -
Uses of VersionPropertyValue in com.avoka.fc.core.entity
Methods in com.avoka.fc.core.entity that return types with arguments of type VersionPropertyValue Modifier and Type Method Description Map<String,VersionPropertyValue>
TemplateVersion. getVersionPropertyMap()
Return the map of VersionPropertyValues keyed on property name. -
Uses of VersionPropertyValue in com.avoka.fc.core.entity.auto
Fields in com.avoka.fc.core.entity.auto with type parameters of type VersionPropertyValue Modifier and Type Field Description static org.apache.cayenne.exp.Property<List<VersionPropertyValue>>
_PropertyType. VERSION_PROPERTY_VALUES
Provides the 'VERSION_PROPERTY_VALUES' property.static org.apache.cayenne.exp.Property<List<VersionPropertyValue>>
_TemplateVersion. VERSION_PROPERTY_VALUES
Provides the 'VERSION_PROPERTY_VALUES' property.Methods in com.avoka.fc.core.entity.auto that return types with arguments of type VersionPropertyValue Modifier and Type Method Description List<VersionPropertyValue>
_PropertyType. getVersionPropertyValues()
Return the VersionPropertyValues.List<VersionPropertyValue>
_TemplateVersion. getVersionPropertyValues()
Return the VersionPropertyValues.Methods in com.avoka.fc.core.entity.auto with parameters of type VersionPropertyValue Modifier and Type Method Description void
_PropertyType. addToVersionPropertyValues(VersionPropertyValue obj)
Add the VersionPropertyValues object.void
_TemplateVersion. addToVersionPropertyValues(VersionPropertyValue obj)
Add the VersionPropertyValues object.void
_PropertyType. removeFromVersionPropertyValues(VersionPropertyValue obj)
Remove the VersionPropertyValues object.void
_TemplateVersion. removeFromVersionPropertyValues(VersionPropertyValue obj)
Remove the VersionPropertyValues object. -
Uses of VersionPropertyValue in com.avoka.fc.core.service.test
Methods in com.avoka.fc.core.service.test that return VersionPropertyValue Modifier and Type Method Description VersionPropertyValue
MockEntityService. createVersionProperty(TemplateVersion version, PropertyType propertyType, String value)
Create a version property value for a form version and property type.
-