super.processUpdates(context);
Object value = getValue();
if (null != value) {
Validator validator = context.getApplication().createValidator(getType());
if (validator instanceof GraphValidator) {
GraphValidator graphValidator = (GraphValidator) validator;
String[] messages = graphValidator.validateGraph(context,this, value,getProfile());
if (null != messages) {
context.renderResponse();
// send all validation messages.
String clientId = getClientId(context);
for (String msg : messages) {