Added GEOV_LINK as PostgisTable.Field
This commit is contained in:
parent
c23245151f
commit
292fe88107
|
@ -39,8 +39,8 @@ public class PostgisIndexer {
|
|||
public static class StandardFields{
|
||||
public static final PostgisTable.Field PROJECT_ID= new PostgisTable.Field(DBConstants.Defaults.PROJECT_ID, PostgisTable.FieldType.TEXT);
|
||||
public static final PostgisTable.Field GEOM= new PostgisTable.Field(DBConstants.Defaults.DEFAULT_GEOMETRY_COLUMN_NAME, PostgisTable.FieldType.GEOMETRY);
|
||||
|
||||
public static final PostgisTable.Field DISPLAY=new PostgisTable.Field(DBConstants.Defaults.DISPLAYED,PostgisTable.FieldType.BOOLEAN);
|
||||
public static final PostgisTable.Field GEOV_LINK=new PostgisTable.Field(DBConstants.Defaults.GEOVIEWER_LINK_FIELD,PostgisTable.FieldType.TEXT);
|
||||
|
||||
}
|
||||
|
||||
|
@ -85,10 +85,10 @@ public class PostgisIndexer {
|
|||
tableFields.add(StandardFields.GEOM);
|
||||
tableFields.add(StandardFields.PROJECT_ID);
|
||||
tableFields.add(StandardFields.DISPLAY);
|
||||
tableFields.add(StandardFields.GEOV_LINK);
|
||||
|
||||
tableFields.addAll(customFields);
|
||||
|
||||
|
||||
table = new PostgisTable(indexName,tableFields, PostgisTable.GeometryType.POINT);
|
||||
log.trace("Index Postgis Table is {} ",table);
|
||||
log.debug("Create if missing..");
|
||||
|
|
|
@ -79,11 +79,15 @@ public class SDIIndexerPlugin extends SDIAbstractPlugin implements IndexerPlugin
|
|||
}
|
||||
|
||||
/**
|
||||
* Expected parameters : - indexName (unique) - workspace - flagInternalIndex:
|
||||
* boolean - centroidRecord (OPT)
|
||||
* Expected parameters :
|
||||
* - indexName (unique)
|
||||
* - workspace
|
||||
* - flagInternalIndex as Boolean;
|
||||
* boolean - centroidRecord (OPT).
|
||||
*
|
||||
* @param request
|
||||
* @return
|
||||
* @param request the request
|
||||
* @return the index document report
|
||||
* @throws InvalidPluginRequestException the invalid plugin request exception
|
||||
*/
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue