Package org.nuxeo.ecm.automation.core.util

Examples of org.nuxeo.ecm.automation.core.util.StringList


        ctx.put("removedMembers", buildPrincipalsString(removedMembers));

        Expression from = Scripting.newExpression("Env[\"mail.from\"]");
        // join both list to remove email of directly affected members
        addedMembers.addAll(removedMembers);
        StringList to = buildRecipientsList(sw, addedMembers);

        if (to.isEmpty()) {
            log.info("No recipients found for member notification in"
                    + docCtx.getSourceDocument().getId());
            return;
        }
View Full Code Here


                        username));
                log.debug(e, e);
            }
        }

        return new StringList(emails);
    }
View Full Code Here

TOP

Related Classes of org.nuxeo.ecm.automation.core.util.StringList

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.