Uses of Interface
de.xima.fc.plugin.config.IParameterModel
-
-
Uses of IParameterModel in de.xima.fc.gui.bean.data
Methods in de.xima.fc.gui.bean.data that return types with arguments of type IParameterModel Modifier and Type Method Description List<IParameterModel>
DbQueryBean. getQueryParams()
List<IParameterModel>
LdapQueryBean. getQueryParams()
Method parameters in de.xima.fc.gui.bean.data with type arguments of type IParameterModel Modifier and Type Method Description void
DbQueryBean. setQueryParams(List<IParameterModel> queryParams)
void
LdapQueryBean. setQueryParams(List<IParameterModel> queryParams)
-
Uses of IParameterModel in de.xima.fc.gui.bean.project
Methods in de.xima.fc.gui.bean.project that return types with arguments of type IParameterModel Modifier and Type Method Description List<IParameterModel>
ProjectInviteBean. getParameter()
Methods in de.xima.fc.gui.bean.project with parameters of type IParameterModel Modifier and Type Method Description void
ProjectInviteBean. addNewParameter(IParameterModel model)
Method parameters in de.xima.fc.gui.bean.project with type arguments of type IParameterModel Modifier and Type Method Description void
ProjectInviteBean. setParameter(List<IParameterModel> parameter)
-
Uses of IParameterModel in de.xima.fc.gui.bean.workflow
Methods in de.xima.fc.gui.bean.workflow that return IParameterModel Modifier and Type Method Description IParameterModel
ProcessingBean. addNewParameter(String name)
Deprecated.IParameterModel
ProcessingBean. getParameter(String paramName)
Deprecated.Methods in de.xima.fc.gui.bean.workflow that return types with arguments of type IParameterModel Modifier and Type Method Description List<IParameterModel>
ProcessingBean. getAllParameter()
Deprecated. -
Uses of IParameterModel in de.xima.fc.gui.interfaces.processing
Methods in de.xima.fc.gui.interfaces.processing that return IParameterModel Modifier and Type Method Description IParameterModel
IProcessingModel. addNewParameter()
Methode zum Hinzufügen eines neuen ParametersIParameterModel
IProcessingModel. getParameter(String paramName)
Liefert ParameterModel mit übergebene Namen zurückMethods in de.xima.fc.gui.interfaces.processing that return types with arguments of type IParameterModel Modifier and Type Method Description List<IParameterModel>
IProcessingModel. getAllParameter()
Liefert alle Parameter derIProcessing
-Instanz für die Anzeige in der View zurück.List<IParameterModel>
IProcessingModel. getFilteredParameter()
Liefert alle gefilterten Parameter zurückMethods in de.xima.fc.gui.interfaces.processing with parameters of type IParameterModel Modifier and Type Method Description void
IProcessingModel. addNewParameter(IParameterModel model)
Methode zum Hinzufügen eines neuen IParameterModels -
Uses of IParameterModel in de.xima.fc.gui.model.processing
Classes in de.xima.fc.gui.model.processing that implement IParameterModel Modifier and Type Class Description class
ParameterModel
Model für das Handling von Parametern, welche dann als JSON-Objekte ablegt werdenMethods in de.xima.fc.gui.model.processing that return IParameterModel Modifier and Type Method Description IParameterModel
ProcessingModel. getParameter(String paramName)
Methods in de.xima.fc.gui.model.processing that return types with arguments of type IParameterModel Modifier and Type Method Description List<IParameterModel>
ProcessingModel. getAllParameter()
List<IParameterModel>
ProcessingModel. getFilteredParameter()
Methods in de.xima.fc.gui.model.processing with parameters of type IParameterModel Modifier and Type Method Description void
ProcessingModel. addNewParameter(IParameterModel model)
-
Uses of IParameterModel in de.xima.fc.gui.utils.data
Methods in de.xima.fc.gui.utils.data that return types with arguments of type IParameterModel Modifier and Type Method Description static List<IParameterModel>
QueryUtils. getUpdatedParameters(List<IParameterModel> params, String query, String placeholder)
Updates the given list of parameters if new parameters have been added to the queryString
Method parameters in de.xima.fc.gui.utils.data with type arguments of type IParameterModel Modifier and Type Method Description static String
QueryUtils. generateUrl(Mandant client, EDatenabfrageTyp type, String queryName, List<IParameterModel> params)
static Serializable[]
QueryUtils. getParameterValueArray(List<IParameterModel> parameters)
Generates an array from the given list of parameters containing the parameter valuesstatic List<IParameterModel>
QueryUtils. getUpdatedParameters(List<IParameterModel> params, String query, String placeholder)
Updates the given list of parameters if new parameters have been added to the queryString
static String
QueryUtils. setParamValues(String original, String replaceStr, List<IParameterModel> params, boolean withQuotes)
Replaces all occurrences of the placeholder with the consecutive values of the parameter list -
Uses of IParameterModel in de.xima.fc.plugin.abstracts
Methods in de.xima.fc.plugin.abstracts that return IParameterModel Modifier and Type Method Description IParameterModel
APluginCustomGUIBean. addNewParameter(String name)
IParameterModel
APluginCustomGUIBean. getParameter(String paramName)
Methods in de.xima.fc.plugin.abstracts that return types with arguments of type IParameterModel Modifier and Type Method Description List<IParameterModel>
APluginCustomGUIBean. getAllParameter()
-
Uses of IParameterModel in de.xima.fc.plugin.config
Methods in de.xima.fc.plugin.config that return IParameterModel Modifier and Type Method Description IParameterModel
IProcessingBean. addNewParameter(String paramName)
Adds a new parameter to the list of parameters, and returns the newly createdIParameterModel
for that parameter.IParameterModel
IProcessingBean. getParameter(String paramName)
Finds the parameter with the given name in the list of parametersMethods in de.xima.fc.plugin.config that return types with arguments of type IParameterModel Modifier and Type Method Description List<IParameterModel>
IProcessingBean. getAllParameter()
Returns the list of all parameters.default List<IParameterModel>
IProcessingBean. getFilteredParameters()
Deprecated.If you want to include a list of parameters in the UI and filter out some attributes, implement the filter yourself.
-