public boolean select (String expression, Map objectModel, Parameters parameters) {
AuthenticationManager authManager = null;
boolean result;
try {
authManager = (AuthenticationManager) this.manager.lookup( AuthenticationManager.ROLE );
result = authManager.testMedia(objectModel, expression);
} catch (Exception local) {
// ignore me
result = false;
} finally {
this.manager.release( authManager );