Merge IMAP in

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@14947 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2009-06-26 08:48:25 +00:00
parent 3421f84fdc
commit 5500f162b4
58 changed files with 7451 additions and 5171 deletions

View File

@@ -27,7 +27,7 @@ package org.alfresco.repo.imap.config;
import org.springframework.beans.factory.BeanNameAware;
/**
* Provides the parameters for an IMAP mount point (a mapping from an Alfresco node path to an IMAP folder name).
* Standard ImapConfig bean.
*/
public class ImapConfigBean implements BeanNameAware
{
@@ -35,9 +35,6 @@ public class ImapConfigBean implements BeanNameAware
/** The IMAP folder name. */
private String name;
/** The mode (virtual or archive). */
private String mode;
/** The Alfresco store name. */
private String store;
@@ -63,27 +60,6 @@ public class ImapConfigBean implements BeanNameAware
this.name = name;
}
/**
* Gets the mode.
*
* @return the mode (virtual or archive)
*/
public String getMode()
{
return this.mode;
}
/**
* Sets the mode.
*
* @param mode
* the new mode (virtual or archive)
*/
public void setMode(String mode)
{
this.mode = mode;
}
/**
* Gets the Alfresco store name.
*