mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
Activity Service - add REST API for User Feed Controls & general cleanup/fixes
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@9187 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -32,6 +32,8 @@ import java.io.Serializable;
|
||||
public class RepoCtx implements Serializable
|
||||
{
|
||||
private String repoEndPoint; // http://hostname:port/webapp (eg. http://localhost:8080/alfresco)
|
||||
private boolean userNamesAreCaseSensitive = false;
|
||||
|
||||
private String ticket;
|
||||
|
||||
public static final long serialVersionUID = -3896042917378679686L;
|
||||
@@ -54,4 +56,14 @@ public class RepoCtx implements Serializable
|
||||
{
|
||||
this.ticket = ticket;
|
||||
}
|
||||
|
||||
public boolean isUserNamesAreCaseSensitive()
|
||||
{
|
||||
return userNamesAreCaseSensitive;
|
||||
}
|
||||
|
||||
public void setUserNamesAreCaseSensitive(boolean userNamesAreCaseSensitive)
|
||||
{
|
||||
this.userNamesAreCaseSensitive = userNamesAreCaseSensitive;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user