mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Expose User Homes in the UI
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@4802 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -58,6 +58,7 @@ public class ClientConfigElement extends ConfigElementAdapter
|
||||
private String initialLocation = "myalfresco";
|
||||
private ExpiringValueCache<String> wcmDomain = new ExpiringValueCache(1000*10L);
|
||||
private ExpiringValueCache<String> wcmPort = new ExpiringValueCache(1000*10L);
|
||||
private String defaultHomeSpacePath = "/app:company_home";
|
||||
|
||||
/**
|
||||
* Default Constructor
|
||||
@@ -378,7 +379,7 @@ public class ClientConfigElement extends ConfigElementAdapter
|
||||
{
|
||||
return this.homeSpacePermission;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param homeSpacePermission The default Home Space permission to set.
|
||||
*/
|
||||
@@ -386,6 +387,22 @@ public class ClientConfigElement extends ConfigElementAdapter
|
||||
{
|
||||
this.homeSpacePermission = homeSpacePermission;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Returns the default Home Space path.
|
||||
*/
|
||||
public String getDefaultHomeSpacePath()
|
||||
{
|
||||
return this.defaultHomeSpacePath;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param defaultHomeSpacePath The default Home Space path to set.
|
||||
*/
|
||||
/*package*/ void setDefaultHomeSpacePath(String defaultHomeSpacePath)
|
||||
{
|
||||
this.defaultHomeSpacePath = defaultHomeSpacePath;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Returns whether AJAX support is enabled in the client
|
||||
|
Reference in New Issue
Block a user