ModelNode response = result.get();
List<Property> items = response.get(RESULT).asPropertyList();
List<LocalSocketBinding> entities = new ArrayList<LocalSocketBinding>();
for(Property item : items)
{
LocalSocketBinding LocalSocketBinding = localSocketAdapter.fromDMR(item.getValue());
LocalSocketBinding.setName(item.getName());
entities.add(LocalSocketBinding);
}
getView().setLocalSockets(groupName, entities);
}