]> source.dussan.org Git - sonarqube.git/commitdiff
Add settings of all type in server-plugin 1174/head
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Thu, 1 Sep 2016 14:18:10 +0000 (16:18 +0200)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Thu, 8 Sep 2016 07:31:28 +0000 (09:31 +0200)
it/it-plugins/server-plugin/src/main/java/ServerPlugin.java

index ce032d42c341b5544af8de187fa67ab1635b736a..84f4845aa2d09459d8b2bea88b4cfc0177f2a60f 100644 (file)
  * along with this program; if not, write to the Free Software Foundation,
  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  */
+
 import java.util.Arrays;
 import java.util.List;
 import org.sonar.api.Properties;
 import org.sonar.api.Property;
+import org.sonar.api.PropertyType;
 import org.sonar.api.SonarPlugin;
 
 @Properties({
-  @Property(key = "some-property", name = "Some Property", defaultValue = "aDefaultValue", global = true, project = false)
+  @Property(key = "some-property", name = "Some Property", defaultValue = "aDefaultValue", global = true, project = false),
+  @Property(key = "boolean", name = "Boolean", defaultValue = "true", type = PropertyType.BOOLEAN, global = true, project = false),
+  @Property(key = "user", name = "User", type = PropertyType.USER_LOGIN, global = true, project = false),
+  @Property(key = "list", name = "List", type = PropertyType.SINGLE_SELECT_LIST, options = {"A", "B", "C"}, global = true, project = false),
+  @Property(key = "metric", name = "Metric", type = PropertyType.METRIC, global = true, project = false),
+  @Property(key = "metric_level", name = "Metric Level", type = PropertyType.METRIC_LEVEL, global = true, project = false),
+  @Property(key = "float", name = "Float", type = PropertyType.FLOAT, global = true, project = false),
+  @Property(key = "int", name = "Integer", type = PropertyType.INTEGER, global = true, project = false),
+  @Property(key = "string", name = "String", type = PropertyType.STRING, global = true, project = false),
+  @Property(key = "license", name = "License", type = PropertyType.LICENSE, global = true, project = false),
+  @Property(key = "long", name = "Long", type = PropertyType.LONG, global = true, project = false),
+  @Property(key = "password", name = "Password", type = PropertyType.PASSWORD, global = true, project = false),
+  @Property(key = "text", name = "Text", type = PropertyType.TEXT, global = true, project = false),
+  @Property(key = "multi", name = "Multi", type = PropertyType.STRING, multiValues = true, global = true, project = false)
 })
 public class ServerPlugin extends SonarPlugin {
   public List getExtensions() {