MonitorAdmin - mon.statusvariable.value should be a String
----------------------------------------------------------
Key: FELIX-809
URL: https://issues.apache.org/jira/browse/FELIX-809
Project: Felix
Issue Type: Bug
Components: Sandbox
Reporter: Martin Thelian
As defined in the OSGi spec 4.1 the MonitorAdminImpl should send the
StatusVariable value as String:
"The events posted by MonitorAdmin contain the following properties:
[...]
• mon.statusvariable.value: The value of the StatusVariable, represented as a
String"
Currently the value is converted into Integer/Float/Boolean or String:
-----
| switch (statusVariable.getType()) { // TODO float->double, int->long
| case StatusVariable.TYPE_BOOLEAN:
| value = new Boolean(statusVariable.getBoolean());
| break;
| case StatusVariable.TYPE_FLOAT:
| value = new Float(statusVariable.getFloat());
| break;
| case StatusVariable.TYPE_INTEGER:
| value = new Integer(statusVariable.getInteger());
| break;
| case StatusVariable.TYPE_STRING:
| value = statusVariable.getString();
| break;
| }
| properties.put(MON_STATUSVARIABLE_VALUE, value);
-----
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.