This is an automated email from the ASF dual-hosted git repository. btellier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit ed106deb3a22e5d7a9c5b58613f796c0de39b26b Author: Benoit Tellier <[email protected]> AuthorDate: Tue Dec 10 13:50:15 2019 +0700 MAILBOX-393 Improve MailboxManager::renameMailbox javadoc --- .../java/org/apache/james/mailbox/MailboxManager.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/mailbox/api/src/main/java/org/apache/james/mailbox/MailboxManager.java b/mailbox/api/src/main/java/org/apache/james/mailbox/MailboxManager.java index 0ad11e6..782aeb1 100644 --- a/mailbox/api/src/main/java/org/apache/james/mailbox/MailboxManager.java +++ b/mailbox/api/src/main/java/org/apache/james/mailbox/MailboxManager.java @@ -164,13 +164,13 @@ public interface MailboxManager extends RequestAware, RightManager, MailboxAnnot * Renames a mailbox. * * @param from - * original mailbox + * original mailbox path * @param to - * new mailbox + * new mailbox path * @param session - * the context for this call, not nul + * the context for this call, not null * @throws MailboxException - * otherwise + * upon unexpected failure * @throws MailboxExistsException * when the <code>to</code> mailbox exists * @throws MailboxNotFoundException @@ -184,15 +184,15 @@ public interface MailboxManager extends RequestAware, RightManager, MailboxAnnot * @param mailboxId * original mailbox * @param newMailboxPath - * new mailbox + * new mailbox path * @param session - * the context for this call, not nul + * the context for this call, not null * @throws MailboxException - * otherwise + * upon unexpected failure * @throws MailboxExistsException - * when the <code>to</code> mailbox exists + * when the <code>newMailboxPath</code> mailbox exists * @throws MailboxNotFoundException - * when the <code>from</code> mailbox does not exist + * when the <code>mailboxId</code> original mailbox does not exist */ void renameMailbox(MailboxId mailboxId, MailboxPath newMailboxPath, MailboxSession session) throws MailboxException; --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
