COSDictionary actionsDict = (COSDictionary) vPath.peek();
// AA entry is authorized only for Page, in this case A Page is just before the Action Dictionary in the path
boolean aaEntryAuth = ((vPath.size() - vPath.getClosestTypePosition(PDPage.class)) == 2);
PreflightConfiguration config = context.getConfig();
ActionManagerFactory factory = config.getActionFact();
List<AbstractActionManager> la = factory.getActionManagers(context, actionsDict);
for (AbstractActionManager aMng : la)
{
aMng.valid(aaEntryAuth);
}