mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
Fixing bundle loading problem
This commit is contained in:
parent
9e72eb3bc3
commit
7717ac137f
1
pom.xml
1
pom.xml
@ -47,6 +47,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.json.wso2</groupId>
|
<groupId>org.json.wso2</groupId>
|
||||||
<artifactId>json</artifactId>
|
<artifactId>json</artifactId>
|
||||||
|
<version>${analytics.json.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>junit</groupId>
|
<groupId>junit</groupId>
|
||||||
|
|||||||
@ -18,6 +18,7 @@
|
|||||||
|
|
||||||
package org.wso2.extension.siddhi.execution.json;
|
package org.wso2.extension.siddhi.execution.json;
|
||||||
|
|
||||||
|
import org.json.JSONException;
|
||||||
import org.json.JSONObject;
|
import org.json.JSONObject;
|
||||||
import org.wso2.siddhi.core.config.ExecutionPlanContext;
|
import org.wso2.siddhi.core.config.ExecutionPlanContext;
|
||||||
import org.wso2.siddhi.core.exception.ExecutionPlanRuntimeException;
|
import org.wso2.siddhi.core.exception.ExecutionPlanRuntimeException;
|
||||||
@ -68,10 +69,13 @@ public class getPropertyFunctionExtension extends FunctionExecutor {
|
|||||||
}
|
}
|
||||||
String jsonString = (String) data[0];
|
String jsonString = (String) data[0];
|
||||||
String property = (String) data[1];
|
String property = (String) data[1];
|
||||||
|
JSONObject jsonObject = null;
|
||||||
JSONObject jsonObject = new JSONObject(jsonString);
|
try {
|
||||||
Object value = jsonObject.get(property).toString();
|
jsonObject = new JSONObject(jsonString);
|
||||||
return value;
|
return jsonObject.get(property).toString();
|
||||||
|
} catch (JSONException e) {
|
||||||
|
throw new ExecutionPlanRuntimeException("Cannot parse JSON String in json:getPeroperty() function. " + e);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user