Class ConfiguratorEntry
- All Implemented Interfaces:
Serializable,Portlet,ComplexCalculationResult
Example:
def opts = ["Europe", "USA"]
def configurationEntry = api.createConfiguratorEntry(InputType.OPTION, "Sales_Org_inline_01")
def contextParameter = configurationEntry.getFirstInput()
contextParameter.setValueOptions(opts)
- Author:
- cat
- See Also:
-
Field Summary
Fields inherited from class AbstractPortletDto
dragDropEnabled, layout, messages, resizingEnabled -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddAdditionalConfigValue(String name, String value) Sets an additional configuration pair.addParameter(ContextParameter input) Deprecated.createParameter(InputType type, String name) Creates a parameter and adds it to the list of inputs.createParameter(InputType type, String name, Date targetDate) Creates a parameter and adds it to the list of inputs.createParameter(ContextParameter input) Creates a parameter and adds it to the list of inputs.createParameter(ContextParameter input, Closure<?> defaultValue) Creates a parameter and adds it to the list of inputs.Gets the Map of additional configurationsgetDefaultValue(String name) Retrieves the default value of a specific tracked input (i.e., created using theInputBuilderFactoryand tracked for default value withAbstractInputBuilder.setDefaultValueTracking(boolean)enabled.Gets the first context parameter.Retrieves a list of hidden pop-up Configurator buttons.getInputByName(String name) GetContextParameterby provided nameGets the list of context parameters.Retrieves the last value of a specifiedContextParameterthat was changed by Groovy logic, together with the timestamp of when the change occurred.
If tracking is not enabled or the specified input does not exist within the givenConfiguratorEntry, anConfiguratorEntryException.ChangeByLogicNotTrackedExceptionwill be thrown.Gets the message.getPreviousValue(String name) Retrieves the previous value of a specific tracked input (i.e., created using theInputBuilderFactoryand tracked for previous value withAbstractInputBuilder.setPreviousValueTracking(boolean)} enabled.The CalculationResultType for this class.booleanisDefaultValueTracked(String name) Checks if the default value tracking for the specifiedContextParameteris enabled.booleanisFirstRun(String name) Retrieves the first run flag for a specific tracked input (i.e., created using theInputBuilderFactoryand tracked for first run withAbstractInputBuilder.setFirstRunTracking(boolean)enabled.booleanisFirstRunTracked(String name) Checks if the first run value tracking for the specifiedContextParameteris enabled.booleanisPreviousValueTracked(String name) Checks if the previous value of a specifiedContextParameteris being tracked.booleanChecks if a specifiedContextParameteris tracked for the value change by the Groovy logicMethods support removal of input from ConfiguratorsEntry (including all hidden inputs supporting value tracking) Input must exist and value tracking turn on.voidsetAdditionalConfig(Map<String, String> additionalConfig) Sets all the additional configurations at oncevoidsetContext(FormulaEngineContext ctx) Sets the FormulaEngineContext.voidsetHiddenActions(InputButtonAction... hiddenActions) Hides all or specified buttons from the pop-up Configurator.voidsetInputs(List<ContextParameter> inputs) Sets the list of context parameters.voidsetMessage(String message) Sets a message that will appear on top of the configuration entry.setTrackedValue(String name, Object value) Sets theContextParametervalue, enriched by the groovy logic value tracking feature.Methods inherited from class AbstractPortletDto
getLabelOverride, layout, setLabelOverride, setLayout, value, withDragDrop, withError, withHeight, withHeight, withInfo, withLabelOverride, withLayout, withLayout, withLayout, withResizing, withTab, withWarning, withWidth, withWidth
-
Constructor Details
-
ConfiguratorEntry
public ConfiguratorEntry()Creates an empty configurator entry object. Must be filled with input parameters by calling createParameter on the object. Example:def cStartDate = input.CStartDate def configurationEntry = api.createConfiguratorEntry().createParameter(startDate, {cStartDate})
-
-
Method Details
-
getInputs
Gets the list of context parameters.NOTE:
All available inputs are returned, also hidden internal inputs which are generated during the default, first-run, previous or value-changed-by-logic value tracking- Returns:
- the list of context parameters, or null if no context parameters were previously added
- See Also:
-
getFirstInput
Gets the first context parameter. Example:api.logInfo("fist input value",configuratorEntry.getFirstInput().getValue())- Returns:
- the first context parameter, or null if no context parameter was previously added
-
setInputs
Sets the list of context parameters.- Parameters:
inputs- a list of context parameters. Can be null.- See Also:
-
getMessage
Gets the message.- Returns:
- the message, or null if it was not set
-
setMessage
Sets a message that will appear on top of the configuration entry. You may use HTML markup. Example:entry.setMessage("<BR /><Center><B><Font Size='3'>Competitor Price Information</Font></B></Center></BR/ >")- Parameters:
message- the text to display as message
-
setHiddenActions
Hides all or specified buttons from the pop-up Configurator.Example – hides all buttons:
import net.pricefx.common.api.InputButtonAction def ce = api.createConfiguratorEntry() ce.setHiddenActions(InputButtonAction.ALL) return ce- Parameters:
hiddenActions- Specify the button you want to hide. SeeInputButtonActionfor possible values.- Since:
- 6.1.0 - Vesper
- See Also:
-
getHiddenActions
Retrieves a list of hidden pop-up Configurator buttons.- Returns:
- the list of hidden
InputButtonAction - Since:
- 6.1.0 - Vesper
- See Also:
-
createParameter
Creates a parameter and adds it to the list of inputs. The parameter will be created without target date. If the FormulaEngineContext is set and contains the parameter with the name, it will be used to set the value of the context parameter by retrieving a parameter from the context with the specified name. Example:Date targetDate = context == null? new Date() : context.getTargetDate(); ContextParameter param = ce.createParameter(InputType.OPTION, "Customer_inline_01");- Parameters:
type- Input type of the parameter.name- Name of the parameter.- Returns:
- the context parameter
-
createParameter
Creates a parameter and adds it to the list of inputs. If the FormulaEngineContext is set and contains the parameter with the name, it will be used to set the value of the context parameter by retrieving a parameter from the context with the specified name.- See Also:
-
createParameter
Creates a parameter and adds it to the list of inputs. If the FormulaEngineContext is set and contains the parameter with the name, it will be used to set the value of the context parameter by retrieving a parameter from the context with the specified name. If the FormulaEngineContext is not set, or no parameter that matches the name of the input is found in the context, then defaultValue from the closure will be used. Example:ContextParameter contextParameter = api.inputBuilderFactory() ... (other methods from the builder) .buildContextParameter() ConfiguratorEntry configuratorEntry = api.createConfiguratorEntry().createParameter(contextParameter, { "hop" })- Parameters:
input- the input element to adddefaultValue- the value to be used if nothing is selected in the input- Returns:
- this ConfiguratorEntry object instance
-
removeInputWithTrackedContent
Methods support removal of input from ConfiguratorsEntry (including all hidden inputs supporting value tracking) Input must exist and value tracking turn on. Input with all the supporting hidden value tracking inputs will be removed.Example:
// Element 'First' with logic def configuratorEntry = api.createConfiguratorEntry() api.inputBuilderFactory() .createOptionEntry('test') .setDefaultValueTracking(true) .addToConfiguratorEntry(configuratorEntry) return configuratorEntry // another element removing input 'test' def configurator = out.First configurator.removeInputWithTrackedContent('test')- Parameters:
name- name of the input- Returns:
- this ConfiguratorEntry object instance without the removed input
- Since:
- 14.0 - Caribou Lou
-
isDefaultValueTracked
Checks if the default value tracking for the specifiedContextParameteris enabled. Example:// Element 'First' with logic def configuratorEntry = api.createConfiguratorEntry() api.inputBuilderFactory() .createOptionEntry('test') .setDefaultValueTracking(true) .addToConfiguratorEntry(configuratorEntry) return configuratorEntry // another element - returns the default value of 'test' ContextParameter (if available), otherwise returns "not supported" return out.First.isDefaultValueTracked('test') ? configurator.getDefaultValue('test') : 'not supported'- Parameters:
name-ContextParameter's name available around the currentConfiguratorEntry- Returns:
trueif the default value of the specifiedContextParameteris tracked, otherwisefalse- Since:
- 14.0 - Caribou Lou
- See Also:
-
getDefaultValue
Retrieves the default value of a specific tracked input (i.e., created using theInputBuilderFactoryand tracked for default value withAbstractInputBuilder.setDefaultValueTracking(boolean)enabled.Note: Attempting to retrieve the default value of an input that is not being tracked will result in an
ConfiguratorEntryException.DefaultValueNotTrackedException. To avoid this exception, verify the tracking status of the input by callingisDefaultValueTracked(String)before invoking this method.Example:
// First element (creates a tracked "test" input in configurator entry with value set to 'Actual' in the input generation mode) def configuratorEntry = api.createConfiguratorEntry() api.inputBuilderFactory() .createOptionEntry('test') .setOptions(['Forecast', 'Actual']) .setValue('Actual') .setDefaultValueTracking(true) .addToConfiguratorEntry(configuratorEntry) return configuratorEntry // Second element (abort calculation if in input generation mode) if (api.isInputGenerationExecution()) api.abortCalculation() // Third element (retrieve and use the default value of 'test' input in another configurator as TextUserEntry) def configurator = out.First def firstDefault = configurator.isDefaultValueTracked('test') ? configurator.getDefaultValue('test') : 'not supported' def configuratorEntry = api.createConfiguratorEntry() configuratorEntry.inputs = [ api.inputBuilderFactory() .createTextUserEntry('Test input default value') .setValue(firstDefault) .buildContextParameter()] return configuratorEntry- Parameters:
name- the name of the tracked input you want to retrieve the default value for- Returns:
- default value of the tracked input
- Throws:
ConfiguratorEntryException.DefaultValueNotTrackedException- if the specified Context Parameter's default value is not tracked.- Since:
- 14.0 - Caribou Lou
- See Also:
-
isPreviousValueTracked
Checks if the previous value of a specifiedContextParameteris being tracked.Example:
// Element 'First' with logic def configuratorEntry = api.createConfiguratorEntry() api.inputBuilderFactory() .createOptionEntry('test') .setPreviousValueTracking(true) .addToConfiguratorEntry(configuratorEntry) return configuratorEntry // another element - returns the previous value of 'test' ContextParameter (if available), otherwise returns "not supported" return out.First.isPreviousValueTracked('test') ? configurator.getPreviousValue('test') : 'not supported'- Parameters:
name- The name of theContextParameterwithin theConfiguratorEntryyou want check for previous value tracking.- Returns:
trueif the previous value of the specifiedContextParameteris being tracked, otherwisefalse.- Since:
- 14.0 - Caribou Lou
- See Also:
-
getPreviousValue
Retrieves the previous value of a specific tracked input (i.e., created using theInputBuilderFactoryand tracked for previous value withAbstractInputBuilder.setPreviousValueTracking(boolean)} enabled.Note: Attempting to retrieve the previous value of an input that is not being tracked will result in an
ConfiguratorEntryException.PreviousValueNotTrackedException. To avoid this exception, verify the tracking status of the input by callingisPreviousValueTracked(String)before invoking this method.Example:
// First element (creates test input in configurator entry with value set to 'Actual' in the inputs generation mode) def configuratorEntry = api.createConfiguratorEntry() api.inputBuilderFactory() .createOptionEntry('test') .setOptions(['Forecast', 'Actual']) .setValue('Actual') .setPreviousValueTracking(true) .addToConfiguratorEntry(configuratorEntry) return configuratorEntry // Second element (aboard on the input generation mode) if (api.isInputGenerationExecution()) api.abortCalculation() // Third element (get previous value of the test-input and return it in the text-user-entry) def firstPrevious = out.First.getPreviousValue('test') def configuratorEntry = api.createConfiguratorEntry() configuratorEntry.inputs = [ api.inputBuilderFactory() .createTextUserEntry('Test input previous value') .setValue(firstPrevious) .buildContextParameter()] return configuratorEntry- Parameters:
name- the name of the tracked input you want to retrieve the previous value for- Returns:
- previous value of the tracked input
- Throws:
ConfiguratorEntryException.PreviousValueNotTrackedException- If the specified Context Parameter's previous value is not being tracked.- Since:
- 14.0 - Caribou Lou
- See Also:
-
isValueChangeByLogicTracked
Checks if a specifiedContextParameteris tracked for the value change by the Groovy logicExample:
// Element 'First' with logic def configuratorEntry = api.createConfiguratorEntry() api.inputBuilderFactory() .createOptionEntry('test') .setValueChangeTracking(true) .addToConfiguratorEntry(configuratorEntry) return configuratorEntry // another element - returns the value of 'test' ContextParameter (if available) changed by the logic, otherwise returns "not supported" return out.First.isValueChangeByLogicTracked('test') ? configurator.getLastValueChangedByLogic('test') : 'not supported'- Parameters:
name-ContextParameter's name available around the currentConfiguratorEntry- Returns:
trueif the value changes by the logic of the specifiedContextParameterare being tracked, otherwisefalse.- Since:
- 14.0 - Caribou Lou
- See Also:
-
isFirstRunTracked
Checks if the first run value tracking for the specifiedContextParameteris enabled. Example:// Element 'First' with logic def configuratorEntry = api.createConfiguratorEntry() api.inputBuilderFactory() .createOptionEntry('test') .setFirstRunTracking(true) .addToConfiguratorEntry(configuratorEntry) return configuratorEntry // another element - returns {@code true} if the run is first, {@code false} if not, otherwise returns 'not supported' return out.First.isFirstRunTracked('test') ? configurator.isFirstRun('test') : 'not supported'- Parameters:
name-ContextParameter's name available around the currentConfiguratorEntry- Returns:
trueif the first run of the specifiedContextParameteris tracked, otherwisefalse- Since:
- 14.0 - Caribou Lou
- See Also:
-
isFirstRun
Retrieves the first run flag for a specific tracked input (i.e., created using theInputBuilderFactoryand tracked for first run withAbstractInputBuilder.setFirstRunTracking(boolean)enabled.Note: Attempting to retrieve the first run flag value of an input that is not being tracked will result in an
ConfiguratorEntryException.FirstRunNotTrackedException. To avoid this exception, verify the tracking status of the input by callingisFirstRunTracked(String)before invoking this method.Example:
// First element (creates test input in configurator entry with value set to 'Actual' in the inputs generation mode) def configuratorEntry = api.createConfiguratorEntry() api.inputBuilderFactory() .createOptionEntry('test') .setOptions(['Forecast', 'Actual']) .setValue('Actual') .setFirstRunTracking(true) .addToConfiguratorEntry(configuratorEntry) return configuratorEntry // Second element (aboard on the input generation mode) if (api.isInputGenerationExecution()) api.abortCalculation() // Third element (get first run flag value of the test-input and return it in the text-user-entry) def isFirstRun = out.First.isFirstRun('test') def configuratorEntry = api.createConfiguratorEntry() configuratorEntry.inputs = [ api.inputBuilderFactory() .createTextUserEntry('Test input first run flag') .setValue(isFirstRun) .buildContextParameter()] return configuratorEntry- Parameters:
name- the name of the tracked input you want to retrieve the first run information- Returns:
trueif the input was initiated (run first time),falseif mor ethen one- Throws:
ConfiguratorEntryException.FirstRunNotTrackedException- If the specified Context Parameter's first run is not being tracked.- Since:
- 14.0 - Caribou Lou
- See Also:
-
setTrackedValue
Sets theContextParametervalue, enriched by the groovy logic value tracking feature.Value changed by this method will be stored in
ContextParameter.getParameterConfig()together with timestamp (only last value change is tracked and will be kept).Value is stored under the key
PriceFxInterface.VALUE_CHANGED_TEMPLATEas aMapwithLocalDateTimeas a key.Example:
// "SomeType" element in Groovy logic def configuratorEntry = api.createConfiguratorEntry() api.inputBuilderFactory() .createOptionEntry('FirstOrSecond') .setOptions(['First', 'Second']) .setValueChangeTracking(true) .addToConfiguratorEntry(configuratorEntry) return configuratorEntry // "OtherElement" in Groovy logic def configuratorEntry = out.SomeType if(//particular condition is met) { configuratorEntry.setTrackedValue('FirstOrSecond', 'valueChangedByTheLogic') }- Parameters:
name- The name of theContextParameterto update within theConfiguratorEntry.value- The updated value of theContextParameter, reflecting changes made via Groovy logic.- Returns:
- The updated
ContextParameterwith its value changed and tracked. - Throws:
ConfiguratorEntryException.ChangeByLogicNotTrackedException- If the specified input does not exist within theConfiguratorEntryor if value change tracking is not enabled.- Since:
- 14.0 - Caribou Lou
- See Also:
-
getLastValueChangedByLogic
Retrieves the last value of a specifiedContextParameterthat was changed by Groovy logic, together with the timestamp of when the change occurred.
If tracking is not enabled or the specified input does not exist within the givenConfiguratorEntry, anConfiguratorEntryException.ChangeByLogicNotTrackedExceptionwill be thrown.Example:
// SomeType element in Groovy logic def configuratorEntry = api.createConfiguratorEntry() api.inputBuilderFactory() .createOptionEntry('FirstOrSecond') .setOptions(['First', 'Second']) .setValueChangeTracking(true) .addToConfiguratorEntry(configuratorEntry) return configuratorEntry // OtherElement in Groovy logic def configuratorEntry = out.SomeType if(//particular condition is met) { configuratorEntry.setTrackedValue('FirstOrSecond', 'valueChangedByTheLogic') } // OtherElement in Groovy logic returning timestamp and value changed by the groovy logic def configuratorEntry = out.SomeType return configuratorEntry.getLastValueChangedByLogic(''FirstOrSecond)- Parameters:
name- The name of theContextParameterwithin theConfiguratorEntryyou want to retrieve the last changed value and timestamp for.- Returns:
- The value of the
ContextParameterwhich was changed by the logic (with timestamp). - Throws:
ConfiguratorEntryException.ChangeByLogicNotTrackedException- if input was not found for particularConfiguratorEntryor value tracking is not turned on.- Since:
- 14.0 - Caribou Lou
- See Also:
-
createParameter
Creates a parameter and adds it to the list of inputs. If the FormulaEngineContext is set and contains the parameter with the name, it will be used to set the value of the context parameter by retrieving a parameter from the context with the specified name. Example:ContextParameter contextParameter = api.inputBuilderFactory() ... (other methods from the builder) .buildContextParameter() ConfiguratorEntry configuratorEntry = api.createConfiguratorEntry().createParameter(contextParameter)- Parameters:
input- the input element to add- Returns:
- this ConfiguratorEntry object instance
-
addParameter
Deprecated.Adds a parameter to the list of parameters of this object without setting its value from the formula context. In general, it is prefered to directly usecreateParameter(ContextParameter). Example:ContextParameter contextParameter = api.inputBuilderFactory() ... (other methods from the builder) .buildContextParameter() ConfiguratorEntry configuratorEntry = api.createConfiguratorEntry().addParameter(contextParameter)- Parameters:
input- The ContextParameter to add (f.e an input)- Returns:
- this ConfiguratorEntry object instance
-
getAdditionalConfig
Gets the Map of additional configurations- Returns:
- the additional config, or null, if nothing was set
-
setAdditionalConfig
Sets all the additional configurations at once- See Also:
-
addAdditionalConfigValue
Sets an additional configuration pair.Example:
def invoicePriceBoundaries = api.createConfiguratorEntry() invoicePriceBoundaries.addAdditionalConfigValue("groupLabel", "Business Rules") invoicePriceBoundaries.addAdditionalConfigValue("showInSectionsPanel", "true")- Parameters:
name- the name of the configuration key. Possible key names:layout(enum) - default: vertical
groupLabel(String)recalculateParentEntityOnConfirm(Boolean) - default: false
value- the value of the configuration key
-
getResultType
The CalculationResultType for this class.- Specified by:
getResultTypein interfaceComplexCalculationResult- Returns:
- CONFIGURATORENTRY
-
setContext
public void setContext(FormulaEngineContext ctx) Sets the FormulaEngineContext. It is use for retrieving values when creating parameters- Parameters:
ctx-
-
getInputByName
GetContextParameterby provided nameExample:
// Element 'First' with logic def configuratorEntry = api.createConfiguratorEntry() api.inputBuilderFactory() .createOptionEntry('test') .addToConfiguratorEntry(configuratorEntry) return configuratorEntry // another element - returns the test input return out.First.getInputByName('test')- Parameters:
name-ContextParameter's name available around the currentConfiguratorEntry- Returns:
ContextParameterif found ornullif not.- Since:
- 14.0 - Caribou Lou
- See Also:
-