Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.util.Map;

public class Main {
    public static Map<String, Object> getFieldDefinition(Map<String, Object> flow, String fieldName) {
        return (Map<String, Object>) ((Map<String, Object>) flow.get("fields")).get(fieldName);
    }
}