}
return value;
}
protected Value marshalJavaMap(Object o, CycleDetector cycleDetector) {
Value value = null;
Map<?, ?> marshaledMap = (Map<?, ?>) o;
if (marshaledMap != null) {
JSON.Object<JSON.String, Value> marshaledObject = new JSON.Object<JSON.String, Value>();
Iterator<?> keySetIterator = marshaledMap.keySet().iterator();
while (keySetIterator.hasNext()) {