All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.automatiko.engine.addons.usertasks.email.EmailAddressResolver Maven / Gradle / Ivy

package io.automatiko.engine.addons.usertasks.email;

import java.util.Collection;
import java.util.Map;

public interface EmailAddressResolver {

    /**
     * Resolves email addresses for given users and groups.
     * 
     * @param users list of users to get email addresses for
     * @param groups list of groups to get email addresses for
     * @return complete map of email addresses resolved for given users and groups where the key is the user/group and the value
     *         is email address
     */
    Map resolve(Collection users, Collection groups);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy