| | |
| | | private static final String COPYCONNECTIVITYMODE = "COPYCONNECTIVITYMODE"; |
| | | private static final String PROFILEMODE = "PROFILEMODE"; |
| | | private static final String USEZONE121 = "USEZONE121"; |
| | | private static final String IGNORE_DBETL = "IGNORE_DBETL"; |
| | | |
| | | protected static OracleNGDataStoreFactory dataStoreFactory = new OracleNGDataStoreFactory(); |
| | | |
| | |
| | | protected boolean _profileMode = false; |
| | | protected boolean _useZone121 = true; |
| | | protected boolean _useTransform = true; |
| | | protected boolean _ignoreDBETL = false; |
| | | |
| | | protected int _testCount = -1; |
| | | protected JDBCDataStore sourceDataStore; |
| | |
| | | _copyConnectivityMode = dataMap.getBooleanFromString(COPYCONNECTIVITYMODE); |
| | | _profileMode = dataMap.getBooleanFromString(PROFILEMODE); |
| | | _useZone121 = dataMap.getBooleanFromString(USEZONE121); |
| | | _ignoreDBETL = dataMap.getBooleanFromString(IGNORE_DBETL); |
| | | |
| | | if (_useZone121) { |
| | | FeatureTypeBuilderUtil.setDefaultFeatureSRID(3826); |
| | | } else { |
| | |
| | | return _useZone121; |
| | | } |
| | | |
| | | public boolean isIgnoreDBETL() { |
| | | return _ignoreDBETL; |
| | | } |
| | | |
| | | public void set_ignoreDBETL(boolean _ignoreDBETL) { |
| | | this._ignoreDBETL = _ignoreDBETL; |
| | | } |
| | | |
| | | public DataStore getSourceDataStore() { |
| | | return sourceDataStore; |
| | | } |