6263646566676869
*/ public void checkAccessAllowed(String key, AccessControlledMap.ContextAccessLevel type) throws InsufficientCredentialException { if (!isAccessAllowed(key, type)) { throw new InsufficientCredentialException(); } }
71727374757677
if (entry.allowAllToRead || contextAccessController.isAccessAllowed(key, ContextAccessLevel.READ)) { return (T) entry.getValue(); } } throw new InsufficientCredentialException(); }
101102103104105106107
} else { if (entry.allowAllToRead || contextAccessController.isAccessAllowed(key, ContextAccessLevel.READ)) { return entry.propagationModes; }} throw new InsufficientCredentialException(); }