I want to access Hashmap from another class for Rule writing how can i do that?
Class Nov{
public static main()
...
public static HashMap<Object, Object> parseJson(JSONObject jsonObject) throws ParseException {
Set<Object> set = jsonObject.keySet();
Iterator<Object> iterator = set.iterator();
while (iterator.hasNext()) {
Object obj = iterator.next();
if (jsonObject.get(obj) instanceof JSONArray)
{
getArray(jsonObject.get(obj));
}
else {
}
}