Package com.volantis.mps.bms

Examples of com.volantis.mps.bms.RecipientType


        if (LOGGER.isDebugEnabled()) {
            LOGGER.debug("Entered addRecipients");
        }

        RecipientType type = RecipientType.TO;

        try {
            for (Iterator iterator = recipients.keySet().iterator();
                 iterator.hasNext();) {
                type = (RecipientType) iterator.next();

                if (LOGGER.isDebugEnabled()) {
                    LOGGER.debug("Adding recipients: " + type);
                }

                session.addRecipients(type.name(),
                        (MessageRecipients) recipients.get(type));
            }
        } catch (RecipientException ignore) {
            // XXX Should never happen with the current implementation.
            LOGGER.warn("message-recipient-addition-failed-for", type,
View Full Code Here

TOP

Related Classes of com.volantis.mps.bms.RecipientType

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.