JSF - Validator

Colegas,

Fiz uma classe EmailValidator e agora não sei como pegar/carregar as mensagem abaixo <“Email not valid”> do meu arquivo MessageBundle.properties.
Você pode me ajudar?

Muito obrigado,

Marques

[code]
public void validate(FacesContext facesContext,
UIComponent uIComponent, Object object) throws ValidatorException {

        String enteredEmail = (String)object;
        //Set the email pattern string
        Pattern p = Pattern.compile(".+@.+\\.[a-z]+");
        
        //Match the given string with the pattern
        Matcher m = p.matcher(enteredEmail);
        
        //Check whether match is found
        boolean matchFound = m.matches();
        
        if (!matchFound) {
            FacesMessage message = new FacesMessage();
            message.setDetail("Email not valid");
            message.setSummary("Email not valid");
            message.setSeverity(FacesMessage.SEVERITY_ERROR);
            throw new ValidatorException(message);
        }
    }[/code]