Package org.neo4j.jdbc
Class Neo4jDataSource
- java.lang.Object
-
- org.neo4j.jdbc.Neo4jDataSource
-
- All Implemented Interfaces:
Wrapper,CommonDataSource,DataSource
public abstract class Neo4jDataSource extends Object implements DataSource
- Since:
- 3.2.0
- Author:
- AgileLARUS
-
-
Field Summary
Fields Modifier and Type Field Description protected booleanisSslstatic StringNEO4J_JDBC_PREFIXprotected Stringpasswordprotected intportNumberprotected StringserverNameprotected Stringuser
-
Constructor Summary
Constructors Constructor Description Neo4jDataSource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleangetIsSsl()intgetLoginTimeout()PrintWritergetLogWriter()LoggergetParentLogger()StringgetPassword()intgetPortNumber()StringgetServerName()StringgetUrl(String protocol)StringgetUser()booleanisWrapperFor(Class<?> iface)voidsetIsSsl(boolean ssl)voidsetLoginTimeout(int seconds)voidsetLogWriter(PrintWriter out)voidsetPassword(String password)voidsetPortNumber(int portNumber)voidsetServerName(String serverName)voidsetUser(String user)<T> Tunwrap(Class<T> iface)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface javax.sql.CommonDataSource
createShardingKeyBuilder
-
Methods inherited from interface javax.sql.DataSource
createConnectionBuilder, getConnection, getConnection
-
-
-
-
Field Detail
-
NEO4J_JDBC_PREFIX
public static final String NEO4J_JDBC_PREFIX
- See Also:
- Constant Field Values
-
serverName
protected String serverName
-
user
protected String user
-
password
protected String password
-
portNumber
protected int portNumber
-
isSsl
protected boolean isSsl
-
-
Method Detail
-
getLogWriter
public PrintWriter getLogWriter() throws SQLException
- Specified by:
getLogWriterin interfaceCommonDataSource- Specified by:
getLogWriterin interfaceDataSource- Throws:
SQLException
-
setLogWriter
public void setLogWriter(PrintWriter out) throws SQLException
- Specified by:
setLogWriterin interfaceCommonDataSource- Specified by:
setLogWriterin interfaceDataSource- Throws:
SQLException
-
setLoginTimeout
public void setLoginTimeout(int seconds) throws SQLException- Specified by:
setLoginTimeoutin interfaceCommonDataSource- Specified by:
setLoginTimeoutin interfaceDataSource- Throws:
SQLException
-
getLoginTimeout
public int getLoginTimeout() throws SQLException- Specified by:
getLoginTimeoutin interfaceCommonDataSource- Specified by:
getLoginTimeoutin interfaceDataSource- Throws:
SQLException
-
getParentLogger
public Logger getParentLogger() throws SQLFeatureNotSupportedException
- Specified by:
getParentLoggerin interfaceCommonDataSource- Throws:
SQLFeatureNotSupportedException
-
unwrap
public <T> T unwrap(Class<T> iface) throws SQLException
- Specified by:
unwrapin interfaceWrapper- Throws:
SQLException
-
isWrapperFor
public boolean isWrapperFor(Class<?> iface) throws SQLException
- Specified by:
isWrapperForin interfaceWrapper- Throws:
SQLException
-
getServerName
public String getServerName()
-
setServerName
public void setServerName(String serverName)
-
getUser
public String getUser()
-
setUser
public void setUser(String user)
-
getPassword
public String getPassword()
-
setPassword
public void setPassword(String password)
-
getPortNumber
public int getPortNumber()
-
setPortNumber
public void setPortNumber(int portNumber)
-
getIsSsl
public boolean getIsSsl()
-
setIsSsl
public void setIsSsl(boolean ssl)
-
-