Class FormCreationDataImpl
- java.lang.Object
-
- org.alfresco.repo.forms.processor.FormCreationDataImpl
-
- All Implemented Interfaces:
FormCreationData
public class FormCreationDataImpl extends Object implements FormCreationData
Simple DTO containing various objects needed to generate Forms.- Since:
- 3.4
- Author:
- Nick Smith
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Object>getContext()ObjectgetItemData()booleanisForcedField(String fieldName)
-
-
-
Method Detail
-
getItemData
public Object getItemData()
- Specified by:
getItemDatain interfaceFormCreationData- Returns:
- the itemData
-
isForcedField
public boolean isForcedField(String fieldName)
- Specified by:
isForcedFieldin interfaceFormCreationData- Returns:
- If the
fieldNamegiven is a forced field then returnstrue, otherwise returnsfalse.
-
getContext
public Map<String,Object> getContext()
- Specified by:
getContextin interfaceFormCreationData- Returns:
- the context
-
-