Merged WEBAPP-API (5.2.1) to 5.2.N (5.2.1)

136277 jkaabimofrad: APPSREPO-173: Added "smartFoldersEnabled" parameter into the HeartBeat class so it reports whether the smart folders feature is enabled or not.


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@136327 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Jamal Kaabi-Mofrad
2017-04-12 17:06:08 +00:00
parent e4eab9db4f
commit 3094a66ea5

View File

@@ -2,7 +2,7 @@
* #%L
* Alfresco Repository
* %%
* Copyright (C) 2005 - 2016 Alfresco Software Limited
* Copyright (C) 2005 - 2017 Alfresco Software Limited
* %%
* This file is part of the Alfresco software.
* If the software was purchased under a paid Alfresco license, the terms of
@@ -101,6 +101,16 @@ public class SpringExtensionBundle implements InitializingBean
this.enabled = enabled;
}
/**
* Returns whether the current bundle should be registered or not.
*
* @return {@code true} if the current bundle should be registered, otherwise {@code false}
*/
public boolean isEnabled()
{
return enabled;
}
public void setExtensions(List<SpringBeanExtension<?, ?>> extensions)
{
this.extensions = extensions;