package org.opendaylight.nemo.tool.eclipse.plugin.rest.actions.model; import org.json.JSONArray; import org.json.JSONObject; import org.opendaylight.nemo.tool.eclipse.plugin.rest.actions.UUIDUtils; import java.util.List; /** * Created by hj on 10/29/15. */ public class ActionValue implements INemoItem { private List values; public ActionValue(List values) { this.values = values; } public JSONArray getJs(){ JSONArray valueArrayJs =new JSONArray(); for (int i=0;i