ModelNode statusResponse = ModelNode.fromBase64(result.getResponseText());
ModelNode payload = statusResponse.get("result");
ServerInstance instance = factory.serverInstance().as();
instance.setName(handle.getName());
instance.setRunning(payload.asString().equals("STARTED"));
instance.setServer(handle.getName());
instance.setGroup(handle.getGroup());
instanceList.add(instance);