private Binding getBinding(Resource bindingNode)
throws GraphUtilException
{
Literal name = GraphUtil.getUniqueObjectLiteral(graph, bindingNode, VARIABLE);
Value value = GraphUtil.getUniqueObject(graph, bindingNode, VALUE);
return new BindingImpl(name.getLabel(), value);
}