More SearchService refactor. Added CMIS SQL to the search service. Tidy ups. FTS supports default namespace and templates via search parameters API. (MOB-568, MOB-569)

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@14463 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Andrew Hind
2009-05-28 10:34:51 +00:00
parent 47da70f4df
commit 3b68651191
2 changed files with 2 additions and 2 deletions

View File

@@ -231,7 +231,7 @@ public class CMISTemplateResultSet implements Serializable
public String getColumnType(String colName)
{
CMISResultSetColumn col = resultSet.getMetaData().getColumn(colName);
return col == null ? null : col.getPropertyType().name();
return col == null ? null : col.getCMISDataType().name();
}
/**