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(de.xima.fc.entities.Mandant, de.xima.fc.entities.Benutzer,java.util.OptionalLong)- Since:
 - 7.0.0
 - Author:
 - XIMA MEDIA GmbH
 - See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description FetchTemplateResult(List<FormTemplate> templates, List<FormTemplateTag> tags)A new POJO with the given data. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<FormTemplateTag>getTags()List<FormTemplate>getTemplates() 
 - 
 
- 
- 
Constructor Detail
- 
FetchTemplateResult
public FetchTemplateResult(List<FormTemplate> templates, List<FormTemplateTag> tags)
A new POJO with the given data.- Parameters:
 templates- Value returned bygetTemplates()tags- Value returned bygetTags()
 
 - 
 
- 
Method Detail
- 
getTags
public List<FormTemplateTag> getTags()
- Returns:
 - A list of tags that were retrieved.
 
 
- 
getTemplates
public List<FormTemplate> getTemplates()
- Returns:
 - A list of templates that were retrieved.
 
 
 - 
 
 -