Searched refs:CONDSTORE (Results 1 - 3 of 3) sorted by relevance

/javamail/mail/src/main/java/com/sun/mail/imap/
H A DResyncData.java51 * The CONDSTORE <CODE>ResyncData</CODE> instance is used to enable the
52 * CONDSTORE extension
67 * Used to enable only the CONDSTORE extension.
69 public static final ResyncData CONDSTORE = new ResyncData(-1, -1); field in class:ResyncData
H A DIMAPFolder.java94 * the IMAP CONDSTORE and QRESYNC extensions.
279 private volatile long highestmodseq = -1; // RFC 4551 - CONDSTORE
1007 * Enable QRESYNC or CONDSTORE if needed and not enabled.
1008 * QRESYNC implies CONDSTORE, but servers that support
1009 * QRESYNC are not required to support just CONDSTORE
1013 if (rd == ResyncData.CONDSTORE) {
1014 if (!protocol.isEnabled("CONDSTORE") &&
1016 if (protocol.hasCapability("CONDSTORE"))
1017 protocol.enable("CONDSTORE");
2722 if (!p.hasCapability("CONDSTORE"))
[all...]
/javamail/mail/src/main/java/com/sun/mail/imap/protocol/
H A DIMAPProtocol.java1155 if (rd == ResyncData.CONDSTORE) {
1156 if (!hasCapability("CONDSTORE"))
1157 throw new BadCommandException("CONDSTORE not supported");
1158 args.writeArgument(new Argument().writeAtom("CONDSTORE"));
1220 if (rd == ResyncData.CONDSTORE) {
1221 if (!hasCapability("CONDSTORE"))
1222 throw new BadCommandException("CONDSTORE not supported");
1223 args.writeArgument(new Argument().writeAtom("CONDSTORE"));

Completed in 534 milliseconds