Package edu.umich.med.michr.gradle
Class H2PluginExtension
- java.lang.Object
-
- edu.umich.med.michr.gradle.H2PluginExtension
-
public class H2PluginExtension extends java.lang.ObjectThis is the Gradle extension that configures the H2 plugin. All configuration options will be in theh2block of the build.gradle file. This block consists of optional configuration settings to run H2 tasks.
-
-
Constructor Summary
Constructors Constructor Description H2PluginExtension()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetTcpPassword()intgetTcpPort()intgetWebPort()voidsetTcpPassword(java.lang.String tcpPassword)voidsetTcpPort(int tcpPort)voidsetWebPort(int webPort)
-
-
-
Method Detail
-
getTcpPort
public int getTcpPort()
-
setTcpPort
public void setTcpPort(int tcpPort)
-
getTcpPassword
public java.lang.String getTcpPassword()
-
setTcpPassword
public void setTcpPassword(java.lang.String tcpPassword)
-
getWebPort
public int getWebPort()
-
setWebPort
public void setWebPort(int webPort)
-
-