Uses of Class
de.xima.fc.form.common.models.FormThemeReference
-
-
Uses of FormThemeReference in de.xima.fc.api.entity
Methods in de.xima.fc.api.entity that return FormThemeReference Modifier and Type Method Description FormThemeReference
FormThemeAPI. findDefaultFormThemeByClient(UserContext userContext, Mandant client)
Gets the default form theme for the givenclient
scope.FormThemeReference
FormThemeAPI. findDefaultFormThemeByProject(UserContext userContext, Projekt project)
FormThemeReference
FormThemeAPI. findDefaultFormThemeByProject(UserContext userContext, Long projectId)
Methods in de.xima.fc.api.entity with parameters of type FormThemeReference Modifier and Type Method Description FormThemeData
FormThemeAPI. loadFormThemeDataHierarchically(UserContext uc, Mandant client, FormThemeReference formThemeReference, String resourceContext, Set<String> extensions, boolean useDefaultIfUnresolvable)
Combines multiple methods to load all data of a form theme at once.Set<String>
FormThemeAPI. resolveFormThemeCssClassesHierarchically(UserContext uc, Mandant client, FormThemeReference formThemeReference, boolean useDefaultIfUnresolvable)
Gets all CSS classes from the given form theme and all its parent themes.Map<String,List<FormThemeFileReference>>
FormThemeAPI. resolveFormThemeFilesHierarchically(UserContext uc, Mandant client, FormThemeReference formThemeReference, String resourceContext, Set<String> extensions, boolean useDefaultIfUnresolvable)
Gets all files from the given form theme, including files from parent form themes (if any). -
Uses of FormThemeReference in de.xima.fc.common.form_theme
Methods in de.xima.fc.common.form_theme that return FormThemeReference Modifier and Type Method Description FormThemeReference
StaticFormTheme. getParentFormTheme()
Methods in de.xima.fc.common.form_theme that return types with arguments of type FormThemeReference Modifier and Type Method Description List<FormThemeReference>
CyclicFormThemeHierarchyException. cycle()
Gets the nodes in the parent-child hierarchy graph that form the cycle.Methods in de.xima.fc.common.form_theme with parameters of type FormThemeReference Modifier and Type Method Description StaticFormTheme.Builder
StaticFormTheme.Builder. parent(FormThemeReference parent)
Sets the parent form theme for the form theme, seeIFormTheme.getParentFormTheme()
.Constructors in de.xima.fc.common.form_theme with parameters of type FormThemeReference Constructor Description CyclicFormThemeHierarchyException(FormThemeReference node)
Creates a new exception for a cycle in a form theme hierarchy.CyclicFormThemeHierarchyException(String message, FormThemeReference node)
Creates a new exception for a cycle in a form theme hierarchy.Constructor parameters in de.xima.fc.common.form_theme with type arguments of type FormThemeReference Constructor Description CyclicFormThemeHierarchyException(String message, List<FormThemeReference> nodes)
Creates a new exception for a cycle in a form theme hierarchy.CyclicFormThemeHierarchyException(List<FormThemeReference> nodes)
Creates a new exception for a cycle in a form theme hierarchy. -
Uses of FormThemeReference in de.xima.fc.dao.impl
Methods in de.xima.fc.dao.impl that return FormThemeReference Modifier and Type Method Description FormThemeReference
MandantDao. getDefaultFormFormThemeByClient(IEntityContext ec, Mandant client)
FormThemeReference
SystemPropertyDao. getDefaultSystemFormTheme(IEntityContext ec)
Methods in de.xima.fc.dao.impl with parameters of type FormThemeReference Modifier and Type Method Description List<Mandant>
MandantDao. getByDefaultFormTheme(IEntityContext ec, FormThemeReference formTheme)
List<FormVersion>
FormVersionDao. getByFormTheme(IEntityContext ec, Mandant client, FormThemeReference formTheme)
List<ClientFormTheme>
ClientFormThemeDao. getByParentFormTheme(IEntityContext ec, Mandant client, FormThemeReference formTheme)
Method parameters in de.xima.fc.dao.impl with type arguments of type FormThemeReference Modifier and Type Method Description List<ClientFormTheme>
ClientFormThemeDao. getByThemeReferences(IEntityContext ec, Mandant client, Set<FormThemeReference> themeReferences)
-
Uses of FormThemeReference in de.xima.fc.dao.interfaces
Methods in de.xima.fc.dao.interfaces that return FormThemeReference Modifier and Type Method Description FormThemeReference
IMandantDao. getDefaultFormFormThemeByClient(IEntityContext ec, Mandant client)
Finds the configured default form theme.FormThemeReference
ISystemPropertyDao. getDefaultSystemFormTheme(IEntityContext ec)
Gets the form theme that was configured as the default theme for the entire system.Methods in de.xima.fc.dao.interfaces with parameters of type FormThemeReference Modifier and Type Method Description List<Mandant>
IMandantDao. getByDefaultFormTheme(IEntityContext ec, FormThemeReference formThemeReference)
Finds all clients that have the given form theme configured as theirdefault form theme
.List<FormVersion>
IFormVersionDao. getByFormTheme(IEntityContext ec, Mandant client, FormThemeReference formTheme)
Finds all form versions that are associated with the given form theme.List<ClientFormTheme>
IClientFormThemeDao. getByParentFormTheme(IEntityContext ec, Mandant client, FormThemeReference formTheme)
Finds all form versions that are associated with the given form theme.Method parameters in de.xima.fc.dao.interfaces with type arguments of type FormThemeReference Modifier and Type Method Description List<ClientFormTheme>
IClientFormThemeDao. getByThemeReferences(IEntityContext ec, Mandant client, Set<FormThemeReference> themeReferences)
Gets a list ofclient form themes
from the given client that correspond to the givenform theme references
. -
Uses of FormThemeReference in de.xima.fc.entities
Methods in de.xima.fc.entities that return FormThemeReference Modifier and Type Method Description FormThemeReference
Mandant. getDefaultFormTheme()
Gets the default form theme for this client.FormThemeReference
ClientFormTheme. getParentFormTheme()
Gets the parent theme from which this theme inherits.Methods in de.xima.fc.entities with parameters of type FormThemeReference Modifier and Type Method Description void
Mandant. setDefaultFormTheme(FormThemeReference defaultFormTheme)
Sets the default form theme for this client.void
ClientFormTheme. setParentFormTheme(FormThemeReference parentFormTheme)
Sets the parent theme from which this theme inherits. -
Uses of FormThemeReference in de.xima.fc.form.common.interfaces
Methods in de.xima.fc.form.common.interfaces that return FormThemeReference Modifier and Type Method Description FormThemeReference
IFormTheme. getParentFormTheme()
The parent form theme from which this form theme inherits.FormThemeReference
IReferencableFormTheme. reference()
Gets the reference to the form theme. -
Uses of FormThemeReference in de.xima.fc.form.common.models
Subclasses of FormThemeReference in de.xima.fc.form.common.models Modifier and Type Class Description static class
FormThemeReference.ClientFormTheme
A form theme reference to a client form theme.static class
FormThemeReference.FormThemePlugin
A form theme reference to a form theme provided by a plugin, i.e.static class
FormThemeReference.System
A form theme reference to a system form theme, i.e.Methods in de.xima.fc.form.common.models that return FormThemeReference Modifier and Type Method Description static FormThemeReference
FormThemeReference. clientFormTheme(UUID templateUuid)
Creates a reference to a client form theme with the given UUID.FormThemeReference
FormThemeReference.ClientFormTheme. copy()
abstract FormThemeReference
FormThemeReference. copy()
Creates a copy of this form theme reference.FormThemeReference
FormThemeReference.FormThemePlugin. copy()
FormThemeReference
FormThemeReference.System. copy()
static FormThemeReference
FormThemeReference. formThemePlugin(String pluginKey, String pluginName, String themeId)
Gets a reference to a form theme provided by a form theme plugin (de.xima.fc.plugin.form.IPluginFormTheme
).FormThemeReference
XFormProperties. getFormTheme()
Gets the form theme to use for styling the form.FormThemeReference
FormThemeFileReference. getTheme()
The reference to the form theme that contains the file.static FormThemeReference
FormThemeReference. ofAttributeMap(String prefix, Map<String,String> map)
Reads a form theme reference to the given attribute map that is stored at the given prefix.static FormThemeReference
FormThemeReference. ofCanonicalParts(String[] parts, int offset)
Creates a form theme reference from its canonical parts representation.static FormThemeReference
FormThemeReference. ofCanonicalPartsOrNull(String[] parts, int offset)
Creates a form theme reference from its canonical parts representation.static FormThemeReference
FormThemeReference. ofCanonicalPayloadParts(EFormThemeReferenceKind kind, String[] parts, int offset)
Creates a form theme reference from its canonical parts representation.static FormThemeReference
FormThemeReference. ofCanonicalPayloadPartsOrNull(EFormThemeReferenceKind kind, String[] parts, int offset)
Creates a form theme reference from its canonical parts representation.static FormThemeReference
FormThemeReference. ofCanonicalPayloadString(EFormThemeReferenceKind kind, String canonicalRepresentation)
Creates a form theme reference from its canonical string representation.static FormThemeReference
FormThemeReference. ofCanonicalPayloadStringOrNull(EFormThemeReferenceKind kind, String canonicalRepresentation)
Creates a form theme reference from its canonical string representation.static FormThemeReference
FormThemeReference. ofCanonicalString(String canonicalRepresentation)
Creates a form theme reference from its canonical string representation.static FormThemeReference
FormThemeReference. ofCanonicalStringOrNull(String canonicalRepresentation)
Creates a form theme reference from its canonical string representation.FormThemeReference
DefaultReferencableFormTheme. reference()
static FormThemeReference
FormThemeReference. system(ESystemFormThemeType type)
Gets a reference to the system form theme of the given type.static FormThemeReference
FormThemeReference. systemClassic()
Gets a reference to the classic system form theme.static FormThemeReference
FormThemeReference. systemModern()
Gets a reference to the modern system form theme.Methods in de.xima.fc.form.common.models with parameters of type FormThemeReference Modifier and Type Method Description static FormThemeFileReference
FormThemeFileReference. forThemeFile(FormThemeReference theme, String context, String filePath)
Creates a reference to a file in a form theme.static <R,E extends Throwable>
RFormThemeReference. matchFormThemeReference(FormThemeReference reference, FormThemeReference.Matcher<R,E> matcher)
Matches the given form theme reference with the appropriate method of the given matcher.void
XFormProperties. setFormTheme(FormThemeReference formTheme)
Sets the form theme to use for styling the form.static void
FormThemeReference. toAttributeMap(FormThemeReference theme, String prefix, Map<String,String> map)
Writes the given form theme reference to the given attribute map.Constructors in de.xima.fc.form.common.models with parameters of type FormThemeReference Constructor Description DefaultReferencableFormTheme(FormThemeReference reference, IFormTheme theme)
Creates a new POJO with the given theme and reference. -
Uses of FormThemeReference in de.xima.fc.form.helper
Methods in de.xima.fc.form.helper that return FormThemeReference Modifier and Type Method Description static FormThemeReference
URLHelper. resolveFormThemeByContext(IFormRequestContext requestContext, boolean allowFormTheme)
Resolves the form theme to use for the given form version.static FormThemeReference
URLHelper. resolveFormThemeByContext(IFormRequestContext requestContext, Textbaustein textTemplate)
Resolves the form theme to use for the given form version.static FormThemeReference
URLHelper. resolveFormThemeByContext(javax.servlet.http.HttpServletRequest request, FormVersion formVersion, boolean allowFormTheme)
Resolves the form theme to use for the given form version.static FormThemeReference
URLHelper. resolveFormThemeByContext(javax.servlet.http.HttpServletRequest request, FormVersion formVersion, Textbaustein textTemplate)
Resolves the form theme to use for the given form version.static FormThemeReference
URLHelper. resolveFormThemeByParam(FormVersion formVersion, String requestedThemeParam, boolean allowFormTheme)
Resolves the form theme to use for the given form version. -
Uses of FormThemeReference in de.xima.fc.form.request
Methods in de.xima.fc.form.request with parameters of type FormThemeReference Modifier and Type Method Description static IExtendedFormRequestContext
FormRequestContextFactory. forDesignerPreviewRequest(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp, long projektId, FormThemeReference formTheme)
-
Uses of FormThemeReference in de.xima.fc.gui.bean.project
Methods in de.xima.fc.gui.bean.project that return FormThemeReference Modifier and Type Method Description FormThemeReference
ProjectShareBean. getRpTheme()
Methods in de.xima.fc.gui.bean.project with parameters of type FormThemeReference Modifier and Type Method Description void
ProjectShareBean. setRpTheme(FormThemeReference rpTheme)
-
Uses of FormThemeReference in de.xima.fc.gui.bean.settings
Methods in de.xima.fc.gui.bean.settings that return FormThemeReference Modifier and Type Method Description FormThemeReference
ApplicationConfigBean. getDefaultFormTheme()
FormThemeReference
ClientBean. getFormThemeToApply()
Methods in de.xima.fc.gui.bean.settings with parameters of type FormThemeReference Modifier and Type Method Description void
ApplicationConfigBean. setDefaultFormTheme(FormThemeReference defaultFormTheme)
void
ClientBean. setFormThemeToApply(FormThemeReference formThemeToApply)
-
Uses of FormThemeReference in de.xima.fc.gui.bean.templates
Methods in de.xima.fc.gui.bean.templates that return FormThemeReference Modifier and Type Method Description FormThemeReference
TemplatesBean. getPreviewFormTheme()
Only for HTML text templates: gets the form theme to use for previewing the selected text template.Methods in de.xima.fc.gui.bean.templates with parameters of type FormThemeReference Modifier and Type Method Description void
TemplatesBean. setPreviewFormTheme(FormThemeReference previewFormTheme)
Only for HTML text templates: sets the form theme to use for previewing the selected text template. -
Uses of FormThemeReference in de.xima.fc.gui.builder
Fields in de.xima.fc.gui.builder declared as FormThemeReference Modifier and Type Field Description protected FormThemeReference
AFormShareScriptBuilder. rpTheme
Methods in de.xima.fc.gui.builder with parameters of type FormThemeReference Modifier and Type Method Description AFormShareScriptBuilder
AFormShareScriptBuilder. withRpTheme(FormThemeReference formThemeReference)
Sets the form theme to use for the form. -
Uses of FormThemeReference in de.xima.fc.gui.common.converter
Methods in de.xima.fc.gui.common.converter that return FormThemeReference Modifier and Type Method Description FormThemeReference
FormThemeReferenceConverter. getAsObject(javax.faces.context.FacesContext context, javax.faces.component.UIComponent component, String value)
Methods in de.xima.fc.gui.common.converter with parameters of type FormThemeReference Modifier and Type Method Description String
FormThemeReferenceConverter. getAsString(javax.faces.context.FacesContext context, javax.faces.component.UIComponent component, FormThemeReference value)
-
Uses of FormThemeReference in de.xima.fc.gui.designer.form.model
Methods in de.xima.fc.gui.designer.form.model that return FormThemeReference Modifier and Type Method Description FormThemeReference
FormThemeItem. getParent()
Gets the parent form theme of the form theme, if it has any.FormThemeReference
FormThemeItemCssUrl. getTheme()
The reference to the theme that provides the CSS file.FormThemeReference
FormThemeItem. getValue()
Gets the unique identifier of the form theme.Constructors in de.xima.fc.gui.designer.form.model with parameters of type FormThemeReference Constructor Description FormThemeItem(String name, String groupName, FormThemeReference value, FormThemeReference parent, List<String> cssClasses, List<FormThemeItemCssUrl> cssUrls)
Creates a new form them item with the given data.FormThemeItemCssUrl(String url, boolean offerClassesAsSuggestions, FormThemeReference theme)
Creates a new form theme item CSS URL with the given data. -
Uses of FormThemeReference in de.xima.fc.gui.designer.form.utils
Methods in de.xima.fc.gui.designer.form.utils with parameters of type FormThemeReference Modifier and Type Method Description static String
FormCssHelper. fetchFormThemeCss(Mandant client, FormThemeReference themeReference)
-
Uses of FormThemeReference in de.xima.fc.gui.model.form_theme
Methods in de.xima.fc.gui.model.form_theme that return FormThemeReference Modifier and Type Method Description FormThemeReference
FormThemeView. getParentFormTheme()
Gets the client form theme'sparent form theme
.Methods in de.xima.fc.gui.model.form_theme with parameters of type FormThemeReference Modifier and Type Method Description void
FormThemeView. setParentFormTheme(FormThemeReference parentFormTheme)
Sets the client form theme'sparent form theme
. -
Uses of FormThemeReference in de.xima.fc.handler.interfaces.system
Methods in de.xima.fc.handler.interfaces.system that return FormThemeReference Modifier and Type Method Description FormThemeReference
IFormThemeHandler. findDefaultFormThemeByClient(UserContext userContext, Mandant client)
Gets the default form theme for the givenclient
scope.FormThemeReference
IFormThemeHandler. findDefaultFormThemeByProject(UserContext userContext, Projekt project)
FormThemeReference
IFormThemeHandler. findDefaultFormThemeByProject(UserContext userContext, Long projectId)
Methods in de.xima.fc.handler.interfaces.system with parameters of type FormThemeReference Modifier and Type Method Description FormThemeData
IFormThemeHandler. loadFormThemeDataHierarchically(UserContext uc, Mandant client, FormThemeReference formThemeReference, String resourceContext, Set<String> extensions, boolean useDefaultIfUnresolvable)
Combines multiple methods to load all data of a form theme at once.Set<String>
IFormThemeHandler. resolveFormThemeCssClassesHierarchically(UserContext uc, Mandant client, FormThemeReference formThemeReference, boolean useDefaultIfUnresolvable)
Gets all CSS classes from the given form theme and all its parent themes.Map<String,List<FormThemeFileReference>>
IFormThemeHandler. resolveFormThemeFilesHierarchically(UserContext uc, Mandant client, FormThemeReference formThemeReference, String resourceContext, Set<String> extensions, boolean useDefaultIfUnresolvable)
Gets all files from the given form theme, including files from parent form themes (if any). -
Uses of FormThemeReference in de.xima.fc.handler.system
Methods in de.xima.fc.handler.system that return FormThemeReference Modifier and Type Method Description FormThemeReference
FormThemeHandler. findDefaultFormThemeByClient(UserContext userContext, Mandant client)
FormThemeReference
FormThemeHandler. findDefaultFormThemeByProject(UserContext userContext, Projekt project)
FormThemeReference
FormThemeHandler. findDefaultFormThemeByProject(UserContext userContext, Long projectId)
Methods in de.xima.fc.handler.system with parameters of type FormThemeReference Modifier and Type Method Description FormThemeData
FormThemeHandler. loadFormThemeDataHierarchically(UserContext uc, Mandant client, FormThemeReference formThemeReference, String context, Set<String> extensions, boolean useDefaultIfUnresolvable)
Set<String>
FormThemeHandler. resolveFormThemeCssClassesHierarchically(UserContext uc, Mandant client, FormThemeReference formThemeReference, boolean useDefaultIfUnresolvable)
Map<String,List<FormThemeFileReference>>
FormThemeHandler. resolveFormThemeFilesHierarchically(UserContext uc, Mandant client, FormThemeReference formThemeReference, String context, Set<String> extensions, boolean useDefaultIfUnresolvable)
-
Uses of FormThemeReference in de.xima.fc.importer.mdl.descriptor
Methods in de.xima.fc.importer.mdl.descriptor with parameters of type FormThemeReference Modifier and Type Method Description static DependencyDescriptor
DependencyDescriptor. ofFormThemeReference(FormThemeReference formTheme)
-
Uses of FormThemeReference in de.xima.fc.interfaces.servlet
Methods in de.xima.fc.interfaces.servlet that return FormThemeReference Modifier and Type Method Description default FormThemeReference
IServletResponse. getFormTheme()
A form theme to apply to the response. -
Uses of FormThemeReference in de.xima.fc.logic.form_theme
Methods in de.xima.fc.logic.form_theme that return FormThemeReference Modifier and Type Method Description static FormThemeReference
FormThemeManager. defaultFormThemeReferenceIfUnresolvable(IEntityContext ec, Mandant client, FormThemeReference themeReference)
Checks whether the given form theme reference can be resolved to a correspondingIFormTheme
.static FormThemeReference
FormThemeManager. findDefaultFormTheme(IEntityContext ec, Mandant client)
Finds the configured default form theme.Methods in de.xima.fc.logic.form_theme that return types with arguments of type FormThemeReference Modifier and Type Method Description static Set<FormThemeReference>
FormThemeManager. findAvailableFormThemes(IEntityContext ec, Mandant client)
Finds all form themes that are available to the given client.static Set<FormThemeReference>
FormThemeManager. findFormThemesPossibleAsParentFor(IEntityContext ec, Mandant client, FormThemeReference theme, Set<FormThemeReference> themes)
Finds all form themes that can be used as a parent theme for the given theme.Methods in de.xima.fc.logic.form_theme with parameters of type FormThemeReference Modifier and Type Method Description static FormThemeReference
FormThemeManager. defaultFormThemeReferenceIfUnresolvable(IEntityContext ec, Mandant client, FormThemeReference themeReference)
Checks whether the given form theme reference can be resolved to a correspondingIFormTheme
.static String
FormThemeManager. findFormThemeFileVersion(IEntityContext ec, Mandant client, FormThemeReference theme, String context, String filePath)
Finds the version of a file from the given form theme.static String
FormThemeManager. findFormThemeFileVersion(IEntityContext ec, UUID clientUuid, FormThemeReference theme, String context, String filePath)
Finds the version of a file from the given form theme.static Set<FormThemeReference>
FormThemeManager. findFormThemesPossibleAsParentFor(IEntityContext ec, Mandant client, FormThemeReference theme, Set<FormThemeReference> themes)
Finds all form themes that can be used as a parent theme for the given theme.static FormThemeUsages
FormThemeManager. findFormThemeUsages(IEntityContext ec, Mandant client, FormThemeReference themeReference)
Finds all locations where the given form theme is still used.static boolean
FormThemeManager. isFormThemeReferenceResolvable(IEntityContext ec, Mandant client, FormThemeReference themeReference)
Checks whether form theme reference can be resolved to a correspondingIFormTheme
.static InputStream
FormThemeManager. openFormThemeFilesHierarchically(IEntityContext ec, Mandant client, FormThemeReference themeReference, String context, Predicate<? super String> fileNameFilter)
Opens an input stream to a file or multiple files from the given form theme.IFormTheme
IFormThemeResolver. resolve(FormThemeReference reference)
Resolves aform theme reference
to aform theme
.static Set<String>
FormThemeManager. resolveFormThemeCssClassesHierarchically(IEntityContext ec, Mandant client, FormThemeReference formTheme)
Gets all CSS classes from the given form theme, including all its parent themes.static List<FormThemeFileReference>
FormThemeManager. resolveFormThemeFilesHierarchically(IEntityContext ec, Mandant client, FormThemeReference themeReference, String context, Predicate<? super String> fileNameFilter)
Resolves one or multiple files from the given form theme.static IFormTheme
FormThemeManager. resolveFormThemeReference(IEntityContext ec, Mandant client, FormThemeReference themeReference)
Resolves a form theme reference to the correspondingIFormTheme
that can be used to access the form theme.static IFormThemeChain
FormThemeManager. resolveFormThemeReferenceHierarchy(IEntityContext ec, Mandant client, FormThemeReference themeReference)
Resolves the given theme reference and all its parents to a list ofIFormTheme
instances.static IFormThemeChain
FormThemeManager. resolveFormThemeReferenceHierarchy(IFormThemeResolver themeResolver, FormThemeReference themeReference)
Resolves the given theme reference and all its parents to a list ofIFormTheme
instances.Method parameters in de.xima.fc.logic.form_theme with type arguments of type FormThemeReference Modifier and Type Method Description static Set<FormThemeReference>
FormThemeManager. findFormThemesPossibleAsParentFor(IEntityContext ec, Mandant client, FormThemeReference theme, Set<FormThemeReference> themes)
Finds all form themes that can be used as a parent theme for the given theme. -
Uses of FormThemeReference in de.xima.fc.mdl.request
Methods in de.xima.fc.mdl.request that return FormThemeReference Modifier and Type Method Description FormThemeReference
PublishRequestParameter. getFormTheme()
Constructors in de.xima.fc.mdl.request with parameters of type FormThemeReference Constructor Description PublishRequestParameter(long projektId, int formVersionNum, EFormTyp formTyp, String form, String notes, String charsetName, int origVersionsNummer, boolean derive, String fd2rid, boolean isResourceUpload, String b64File, String resourceType, FormThemeReference formTheme)
-
Uses of FormThemeReference in de.xima.fc.mdl.response
Fields in de.xima.fc.mdl.response declared as FormThemeReference Modifier and Type Field Description protected FormThemeReference
ServletResponse. formTheme
Methods in de.xima.fc.mdl.response that return FormThemeReference Modifier and Type Method Description FormThemeReference
ServletResponse. getFormTheme()
Methods in de.xima.fc.mdl.response with parameters of type FormThemeReference Modifier and Type Method Description void
ServletResponse. setFormTheme(FormThemeReference formTheme)
A form theme to apply to the response. -
Uses of FormThemeReference in de.xima.fc.testhelper
Methods in de.xima.fc.testhelper with parameters of type FormThemeReference Modifier and Type Method Description static ClientFormTheme
EntityDummyFactory. dummyClientFormTheme(Mandant client, String name, FormThemeReference parent)
Creates a new, unsaved client form theme with the given name and the given parent theme.static ClientFormTheme
EntityDummyFactory. dummyClientFormTheme(Mandant client, String name, FormThemeReference parent, Map<String,?> files)
Creates a new, unsaved client form theme with the given name and the given parent theme. -
Uses of FormThemeReference in de.xima.fc.web.common.respond
Fields in de.xima.fc.web.common.respond declared as FormThemeReference Modifier and Type Field Description FormThemeReference
FormResponder.TemplateMessageData. formTheme
Methods in de.xima.fc.web.common.respond with parameters of type FormThemeReference Modifier and Type Method Description static String
ServletResponder. buildTemplateHTML(IExtendedFormRequestContext ctx, String msg, FormThemeReference formTheme)
static String
ServletResponder. buildTemplateHTML(String baseUrl, Mandant client, Projekt project, Locale locale, String msg, FormThemeReference formTheme)
static String
ServletResponder. buildTemplateHTML(javax.servlet.http.HttpServletRequest request, Mandant client, Projekt project, Locale locale, String msg, FormThemeReference formTheme)
static FormThemeData
FormResponder. loadFormThemeData(Mandant client, FormThemeReference formTheme)
Loads the data for the given form theme from the database.static FormThemeData
FormResponder. loadFormThemeData(IFormRequestContext requestContext, FormThemeReference formTheme)
Loads the data for the given form theme from the database.static void
FormResponder. respondTemplate(IExtendedFormRequestContext ctx, Vorgang formRecord, String message, FormThemeReference formTheme, boolean success)
static void
FormResponder. respondTemplate(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, Mandant client, Projekt project, Locale locale, String templateText, boolean success, ETextbausteinMsgCode msgCode, FormThemeReference formTheme)
static void
FormResponder. respondTemplateByCtx(IExtendedFormRequestContext ctx, String textbaustein, FormThemeReference formTheme, boolean success, boolean withRedirect)
-