I've just about finished adding my first feature that uses object
permissions to a tapestry app (tapestry-security 0.5.1, tapestry 5.3.8).
Users are given permissions to the objects they are allowed to
maintain, when they go to the new page, only the objects they have
permission to maintain ap
return Arrays.asList(new ContextMenuItem("Update count",
"updateCount"));
}
@Component private Zone testZone;
@OnEvent(value="updateCount")
Object contextMenuAction() {
count++;
return testZone.getBody();
}
}
-----
Tha