Lines Matching defs:cc
63 * @param cc the list of JIDs to include in the CC list or <tt>null</tt> if no CC
70 public static void send(Connection connection, Packet packet, List<String> to, List<String> cc, List<String> bcc)
72 send(connection, packet, to, cc, bcc, null, null, false);
86 * @param cc the list of JIDs to include in the CC list or <tt>null</tt> if no CC
98 public static void send(Connection connection, Packet packet, List<String> to, List<String> cc, List<String> bcc,
103 sendThroughService(connection, packet, to, cc, bcc, replyTo, replyRoom, noReply,
115 sendToIndividualRecipients(connection, packet, to, cc, bcc);
155 List<String> cc = new ArrayList<String>();
162 cc.add(jid);
165 if (!to.contains(original.getFrom()) && !cc.contains(original.getFrom())) {
168 // Remove the sender from the TO/CC list (try with bare JID too)
170 if (!to.remove(from) && !cc.remove(from)) {
173 cc.remove(bareJID);
179 sendThroughService(connection, reply, to, cc, null, null, null, false,
184 sendToIndividualRecipients(connection, reply, to, cc, null);
205 List<String> to, List<String> cc, List<String> bcc) {
213 if (cc != null) {
214 for (Iterator<String> it = cc.iterator(); it.hasNext();) {
230 List<String> cc, List<String> bcc, String replyTo, String replyRoom, boolean noReply,
240 if (cc != null) {
241 for (Iterator<String> it = cc.iterator(); it.hasNext();) {
243 multipleAddresses.addAddress(MultipleAddresses.CC, jid, null, null, false, null);