mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merge from SEAMIST3
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@10724 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -50,7 +50,7 @@ public class M2Property
|
||||
private boolean isIndexed = true;
|
||||
private boolean isIndexedAtomically = true;
|
||||
private boolean isStoredInIndex = false;
|
||||
private boolean isTokenisedInIndex = true;
|
||||
private IndexTokenisationMode indexTokenisationMode = IndexTokenisationMode.TRUE;
|
||||
private List<M2Constraint> constraints;
|
||||
|
||||
/*package*/ M2Property()
|
||||
@@ -204,15 +204,15 @@ public class M2Property
|
||||
}
|
||||
|
||||
|
||||
public boolean isTokenisedInIndex()
|
||||
public IndexTokenisationMode getIndexTokenisationMode()
|
||||
{
|
||||
return isTokenisedInIndex;
|
||||
return indexTokenisationMode;
|
||||
}
|
||||
|
||||
|
||||
public void setTokenisedInIndex(boolean isTokenisedInIndex)
|
||||
public void setIndexTokenisationMode(IndexTokenisationMode indexTokenisationMode)
|
||||
{
|
||||
this.isTokenisedInIndex = isTokenisedInIndex;
|
||||
this.indexTokenisationMode = indexTokenisationMode;
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user