9 |
import java.util.regex.Pattern; |
import java.util.regex.Pattern; |
10 |
|
|
11 |
import org.apache.commons.lang.ArrayUtils; |
import org.apache.commons.lang.ArrayUtils; |
12 |
|
import org.apache.commons.lang.NotImplementedException; |
13 |
import org.apache.commons.lang.StringUtils; |
import org.apache.commons.lang.StringUtils; |
14 |
import org.apache.log4j.Logger; |
import org.apache.log4j.Logger; |
15 |
import org.geotools.data.postgis.PostgisNGDataStoreFactory; |
import org.geotools.data.postgis.PostgisNGDataStoreFactory; |
38 |
* connection into a {@link String} with {@link #toPropertiesString()} and |
* connection into a {@link String} with {@link #toPropertiesString()} and |
39 |
* re-import the String with {@link #parsePropertiesString(String)}. |
* re-import the String with {@link #parsePropertiesString(String)}. |
40 |
*/ |
*/ |
41 |
public class GtDbServerSettings extends AbstractGTServerSettings<Object, Object> { |
public class GtDbServerSettings extends |
42 |
|
AbstractGTServerSettings<Object, Object> { |
43 |
|
|
44 |
Logger log = Logger.getLogger(GtDbServerSettings.class); |
Logger log = Logger.getLogger(GtDbServerSettings.class); |
45 |
|
|
467 |
+ toString(), e); |
+ toString(), e); |
468 |
} |
} |
469 |
} |
} |
470 |
|
|
471 |
|
@Override |
472 |
|
public boolean isAvailable() { |
473 |
|
// TODO |
474 |
|
throw new NotImplementedException(""); |
475 |
|
} |
476 |
} |
} |