comparison geo-backend/src/main/java/de/intevation/gnv/geobackend/sde/datasources/ArcSDEConnection.java @ 380:0100ebf6630f

Added missing Methodstubs for Java 1.6 compability. geo-backend/trunk@385 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Mon, 30 Nov 2009 14:51:09 +0000
parents ff1b7967e6b9
children 210716612c30
comparison
equal deleted inserted replaced
379:31595c0a1a33 380:0100ebf6630f
1 /** 1 /**
2 * 2 *
3 */ 3 */
4 package de.intevation.gnv.geobackend.sde.datasources; 4 package de.intevation.gnv.geobackend.sde.datasources;
5 5
6 import java.sql.Array;
7 import java.sql.Blob;
6 import java.sql.CallableStatement; 8 import java.sql.CallableStatement;
9 import java.sql.Clob;
7 import java.sql.Connection; 10 import java.sql.Connection;
8 import java.sql.DatabaseMetaData; 11 import java.sql.DatabaseMetaData;
12 import java.sql.NClob;
9 import java.sql.PreparedStatement; 13 import java.sql.PreparedStatement;
14 import java.sql.SQLClientInfoException;
10 import java.sql.SQLException; 15 import java.sql.SQLException;
11 import java.sql.SQLWarning; 16 import java.sql.SQLWarning;
17 import java.sql.SQLXML;
12 import java.sql.Savepoint; 18 import java.sql.Savepoint;
13 import java.sql.Statement; 19 import java.sql.Statement;
20 import java.sql.Struct;
14 import java.util.Map; 21 import java.util.Map;
22 import java.util.Properties;
15 23
16 import org.apache.log4j.Logger; 24 import org.apache.log4j.Logger;
17 25
18 import com.esri.sde.sdk.client.SeConnection; 26 import com.esri.sde.sdk.client.SeConnection;
19 import com.esri.sde.sdk.client.SeException; 27 import com.esri.sde.sdk.client.SeException;
347 */ 355 */
348 public SeConnection getSeConnection() { 356 public SeConnection getSeConnection() {
349 return seConnection; 357 return seConnection;
350 } 358 }
351 359
360 public Array createArrayOf(String arg0, Object[] arg1) throws SQLException {
361 return null;
362 }
363
364 public Blob createBlob() throws SQLException {
365 return null;
366 }
367
368 public Clob createClob() throws SQLException {
369 return null;
370 }
371
372 public NClob createNClob() throws SQLException {
373 return null;
374 }
375
376 public SQLXML createSQLXML() throws SQLException {
377 return null;
378 }
379
380 public Struct createStruct(String arg0, Object[] arg1) throws SQLException {
381 return null;
382 }
383
384 public Properties getClientInfo() throws SQLException {
385 return null;
386 }
387
388 public String getClientInfo(String arg0) throws SQLException {
389 return null;
390 }
391
392 public boolean isValid(int arg0) throws SQLException {
393 return false;
394 }
395
396 public void setClientInfo(Properties arg0) throws SQLClientInfoException {
397 }
398
399 public void setClientInfo(String arg0, String arg1)
400 throws SQLClientInfoException {
401 }
402
403 public boolean isWrapperFor(Class<?> iface) throws SQLException {
404 return false;
405 }
406
407 public <T> T unwrap(Class<T> iface) throws SQLException {
408 return null;
409 }
410
352 } 411 }

http://dive4elements.wald.intevation.org