Build Fix: Collateral damage from Fix for ALF-1578: Custom property data fields not searchable due to lucene DEFAULT.ftsIndexerJobDetail exception

- isIndexed needs a default is it is mandatory in the binding

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@19095 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Andrew Hind
2010-03-05 13:18:33 +00:00
parent 81111c11d8
commit ad84497735

View File

@@ -41,7 +41,7 @@ public class M2Property
private boolean isMandatoryEnforced = false;
private boolean isMultiValued = false;
private String defaultValue = null;
private Boolean isIndexed = null;
private Boolean isIndexed = Boolean.TRUE;
private Boolean isIndexedAtomically = null;
private Boolean isStoredInIndex = null;
private IndexTokenisationMode indexTokenisationMode = null;