MetaType - optionValues check
-----------------------------
Key: FELIX-521
URL: https://issues.apache.org/jira/browse/FELIX-521
Project: Felix
Issue Type: Bug
Components: Metatype Service
Reporter: Martin Thelian
There is a problem in the validation of a value against option-values in
"AD.validate(...)":
|> String[] optionValues = getOptionValues();
|> if ( optionValues != null )
|> {
|> [...]
|> // not any of the option values, fail
|> return VALIDATE_NOT_A_VALID_OPTION;
|> }
Per default the optionValues array is empty but not null. Therefore even if no
options are configured the check returns VALIDATE_NOT_A_VALID_OPTION.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.