java - How add FacesMessage to CDI security interceptor? -
i've created security check couple examples: stackoverflow blog adam warski but unfortunatly can't see how add facesmesagges exception in case check fails. my files: checkaction @inherited @interceptorbinding @retention(retentionpolicy.runtime) @target({ elementtype.method, elementtype.type }) public @interface checkaction { @nonbinding public esysobject object() default esysobject.none; @nonbinding public eaction action() default eaction.none; } checkactioninterceptor @interceptor @checkaction public class checkactioninterceptor implements serializable { private static final long serialversionuid = 1l; @aroundinvoke public object checkpermissions(invocationcontext context) throws exception { final checkaction annotation = context.getmethod().getannotation(checkaction.class); if (!isactionallowed(annotation.object(), annotation.action())) { throw new permissionexception("sorry don't have needed p...