Class FetchTemplateResult
- java.lang.Object
 - 
- de.xima.fc.gui.designer.form.model.FetchTemplateResult
 
 
- 
- All Implemented Interfaces:
 Serializable
public final class FetchTemplateResult extends Object implements Serializable
POJO class for the result returned byFormTemplateHelper.fetchTagsAndTemplates(Mandant, Locale, IUser, Projekt, FormVersion)- Since:
 - 7.0.0
 - Author:
 - XIMA MEDIA GmbH
 - See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description FetchTemplateResult(List<FetchedFormTemplate> entityTemplates, List<PluginTemplateGroup> pluginTemplateGroups, List<FormTemplateTag> tags)A new POJO with the given data. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<FetchedFormTemplate>getEntityTemplates()List<PluginTemplateGroup>getPluginTemplateGroups()List<FormTemplateTag>getTags() 
 - 
 
- 
- 
Constructor Detail
- 
FetchTemplateResult
public FetchTemplateResult(List<FetchedFormTemplate> entityTemplates, List<PluginTemplateGroup> pluginTemplateGroups, List<FormTemplateTag> tags)
A new POJO with the given data.- Parameters:
 entityTemplates- Value returned bygetEntityTemplates()pluginTemplateGroups- Value returned bygetPluginTemplateGroups()tags- Value returned bygetTags()
 
 - 
 
- 
Method Detail
- 
getTags
public List<FormTemplateTag> getTags()
- Returns:
 - A list of tags that were retrieved.
 
 
- 
getEntityTemplates
public List<FetchedFormTemplate> getEntityTemplates()
- Returns:
 - A list of entity templates that were retrieved.
 
 
- 
getPluginTemplateGroups
public List<PluginTemplateGroup> getPluginTemplateGroups()
- Returns:
 - A list of plugin templates that were retrieved.
 
 
 - 
 
 -