Revision 44058 trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.fmap.dal/org.gvsig.fmap.dal.db/org.gvsig.fmap.dal.db.h2/src/main/java/org/gvsig/fmap/dal/store/h2/operations/H2SpatialOperationsFactory.java

View differences:

H2SpatialOperationsFactory.java
20 20
    }
21 21

  
22 22
    @Override
23
    public FetchFeatureTypeOperation createFetchFeatureType(EditableFeatureType type, String database, String schema, String table, List<String> primaryKeys, String defaultGeometryField, IProjection crs) {
23
    public FetchFeatureTypeOperation createFetchFeatureType(EditableFeatureType type, TableReference table, List<String> primaryKeys, String defaultGeometryField, IProjection crs) {
24 24
        return new H2SpatialFetchFeatureTypeOperation(
25
                helper, type, database, schema, table, primaryKeys, 
25
                helper, type, table, primaryKeys, 
26 26
                defaultGeometryField, crs
27 27
        );
28 28
    }  
......
33 33
    }
34 34

  
35 35
    @Override
36
    public AppendOperation createAppend(String database, String schema, String table, FeatureType type) {
37
        return new H2SpatialAppendOperation(helper, database, schema, table, type);
36
    public AppendOperation createAppend(TableReference table, FeatureType type) {
37
        return new H2SpatialAppendOperation(helper, table, type);
38 38
    }
39 39
    
40 40
    

Also available in: Unified diff