mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Merged V2.2 to HEAD
7056: Ability to disable/enable CIFS/FTP/NFS via JMX Console git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@8235 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -38,6 +38,13 @@ public interface FileServerConfigMBean {
|
||||
*/
|
||||
public boolean isCIFSServerEnabled();
|
||||
|
||||
/**
|
||||
* Enable/disable CIFS server
|
||||
*
|
||||
* @param enabled true to enable, false to disable
|
||||
*/
|
||||
public void setCIFSServerEnabled(boolean enabled) throws Exception;
|
||||
|
||||
/**
|
||||
* Check if the FTP server is enabled
|
||||
*
|
||||
@@ -45,6 +52,13 @@ public interface FileServerConfigMBean {
|
||||
*/
|
||||
public boolean isFTPServerEnabled();
|
||||
|
||||
/**
|
||||
* Enable/disable FTP server
|
||||
*
|
||||
* @param enabled true to enable, false to disable
|
||||
*/
|
||||
public void setFTPServerEnabled(boolean enabled) throws Exception;
|
||||
|
||||
/**
|
||||
* Check if the NFS server is enabled
|
||||
*
|
||||
@@ -52,6 +66,13 @@ public interface FileServerConfigMBean {
|
||||
*/
|
||||
public boolean isNFSServerEnabled();
|
||||
|
||||
/**
|
||||
* Enable/disable NFS server
|
||||
*
|
||||
* @param enabled true to enable, false to disable
|
||||
*/
|
||||
public void setNFSServerEnabled(boolean enabled) throws Exception;
|
||||
|
||||
/**
|
||||
* Return the CIFS server name
|
||||
*
|
||||
|
Reference in New Issue
Block a user