aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api/src/main/java/org/sonar/api/database/DatabaseProperties.java
diff options
context:
space:
mode:
authorsimonbrandhof <simon.brandhof@gmail.com>2010-09-06 14:08:06 +0000
committersimonbrandhof <simon.brandhof@gmail.com>2010-09-06 14:08:06 +0000
commitaeadc1f9129274949daaa57738c7c4550bdfbc7b (patch)
tree08dadf5ef7474fc41d1d48f74648f1ba8b55f34d /sonar-plugin-api/src/main/java/org/sonar/api/database/DatabaseProperties.java
downloadsonarqube-aeadc1f9129274949daaa57738c7c4550bdfbc7b.tar.gz
sonarqube-aeadc1f9129274949daaa57738c7c4550bdfbc7b.zip
SONAR-236 remove deprecated code from checkstyle plugin + display default value of rule parameters in Q profile console
Diffstat (limited to 'sonar-plugin-api/src/main/java/org/sonar/api/database/DatabaseProperties.java')
-rw-r--r--sonar-plugin-api/src/main/java/org/sonar/api/database/DatabaseProperties.java55
1 files changed, 55 insertions, 0 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/database/DatabaseProperties.java b/sonar-plugin-api/src/main/java/org/sonar/api/database/DatabaseProperties.java
new file mode 100644
index 00000000000..603a913cb29
--- /dev/null
+++ b/sonar-plugin-api/src/main/java/org/sonar/api/database/DatabaseProperties.java
@@ -0,0 +1,55 @@
+/*
+ * Sonar, open source software quality management tool.
+ * Copyright (C) 2009 SonarSource SA
+ * mailto:contact AT sonarsource DOT com
+ *
+ * Sonar is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ *
+ * Sonar is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with Sonar; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
+ */
+package org.sonar.api.database;
+
+public interface DatabaseProperties {
+
+ int MAX_TEXT_SIZE = 16777215;
+
+ String PROP_ISOLATION = "sonar.jdbc.defaultTransactionIsolation";
+ String PROP_URL = "sonar.jdbc.url";
+ String PROP_URL_DEFAULT_VALUE = "jdbc:derby://localhost:1527/sonar";
+ String PROP_DRIVER = "sonar.jdbc.driverClassName";
+ String PROP_DRIVER_DEFAULT_VALUE = "org.apache.derby.jdbc.ClientDriver";
+ String PROP_DRIVER_DEPRECATED = "sonar.jdbc.driver";
+ String PROP_USER = "sonar.jdbc.username";
+ String PROP_USER_DEPRECATED = "sonar.jdbc.user";
+ String PROP_USER_DEFAULT_VALUE = "sonar";
+ String PROP_PASSWORD = "sonar.jdbc.password";
+ String PROP_PASSWORD_DEFAULT_VALUE = "sonar";
+ String PROP_HIBERNATE_HBM2DLL = "sonar.jdbc.hibernate.hbm2ddl";
+ String PROP_HIBERNATE_GENERATE_STATISTICS = "sonar.jdbc.hibernate.generate_statistics";
+ String PROP_DIALECT = "sonar.jdbc.dialect";
+ String PROP_DIALECT_CLASS = "sonar.jdbc.dialectClass";
+ String PROP_JNDI_NAME = "sonar.jdbc.jndiName";
+ String PROP_EMBEDDED_PORT = "sonar.embeddedDatabase.port";
+ String PROP_HIBERNATE_DEFAULT_SCHEMA = "sonar.hibernate.default_schema";
+
+
+ String PROP_EMBEDDED_DATA_DIR = "sonar.embeddedDatabase.dataDir";
+ String DIALECT_DERBY = "derby";
+ String DIALECT_HSQLDB = "hsqldb";
+ String DIALECT_MYSQL = "mysql";
+ String DIALECT_POSTGRESQL = "postgresql";
+ String DIALECT_ORACLE = "oracle";
+ String DIALECT_DB2 = "db2";
+
+ String DIALECT_MSSQL = "mssql";
+} \ No newline at end of file