Package org.keycloak.email.freemarker.beans

Examples of org.keycloak.email.freemarker.beans.EventBean


    }

    @Override
    public void sendEvent(Event event) throws EmailException {
        Map<String, Object> attributes = new HashMap<String, Object>();
        attributes.put("event", new EventBean(event));

        send("passwordResetSubject", "event-" + event.getType().toString().toLowerCase() + ".ftl", attributes);
    }
View Full Code Here

TOP

Related Classes of org.keycloak.email.freemarker.beans.EventBean

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.