]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-5529 - Created org.sonar.server.issue.index package with required classes ...
authorStephane Gamard <stephane.gamard@sonarsource.com>
Sun, 31 Aug 2014 13:42:46 +0000 (15:42 +0200)
committerStephane Gamard <stephane.gamard@sonarsource.com>
Sun, 31 Aug 2014 13:42:46 +0000 (15:42 +0200)
server/sonar-server/src/main/java/org/sonar/server/issue/index/IssueDoc.java [new file with mode: 0644]
server/sonar-server/src/main/java/org/sonar/server/issue/index/IssueIndex.java [new file with mode: 0644]
server/sonar-server/src/main/java/org/sonar/server/issue/index/IssueNormalizer.java [new file with mode: 0644]

diff --git a/server/sonar-server/src/main/java/org/sonar/server/issue/index/IssueDoc.java b/server/sonar-server/src/main/java/org/sonar/server/issue/index/IssueDoc.java
new file mode 100644 (file)
index 0000000..927dda4
--- /dev/null
@@ -0,0 +1,23 @@
+/*
+ * SonarQube, open source software quality management tool.
+ * Copyright (C) 2008-2014 SonarSource
+ * mailto:contact AT sonarsource DOT com
+ *
+ * SonarQube 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.
+ *
+ * SonarQube 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 this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ */
+package org.sonar.server.issue.index;
+
+public class IssueDoc {
+}
diff --git a/server/sonar-server/src/main/java/org/sonar/server/issue/index/IssueIndex.java b/server/sonar-server/src/main/java/org/sonar/server/issue/index/IssueIndex.java
new file mode 100644 (file)
index 0000000..ef8cb16
--- /dev/null
@@ -0,0 +1,61 @@
+/*
+ * SonarQube, open source software quality management tool.
+ * Copyright (C) 2008-2014 SonarSource
+ * mailto:contact AT sonarsource DOT com
+ *
+ * SonarQube 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.
+ *
+ * SonarQube 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 this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ */
+package org.sonar.server.issue.index;
+
+import org.elasticsearch.common.settings.Settings;
+import org.sonar.core.issue.db.IssueDto;
+import org.sonar.server.search.BaseIndex;
+import org.sonar.server.search.IndexDefinition;
+import org.sonar.server.search.SearchClient;
+
+import java.io.IOException;
+import java.util.Map;
+
+public class IssueIndex extends BaseIndex<IssueDoc, IssueDto, String> {
+
+  protected IssueIndex(IssueNormalizer normalizer, SearchClient client) {
+    super(IndexDefinition.ISSUES, normalizer, client);
+  }
+
+  @Override
+  protected String getKeyValue(String s) {
+    return s;
+  }
+
+  @Override
+  protected Settings getIndexSettings() throws IOException {
+    return null;
+  }
+
+  @Override
+  protected Map mapProperties() {
+    return null;
+  }
+
+  @Override
+  protected Map mapKey() {
+    return null;
+  }
+
+  @Override
+  protected IssueDoc toDoc(Map<String, Object> fields) {
+    return null;
+  }
+}
diff --git a/server/sonar-server/src/main/java/org/sonar/server/issue/index/IssueNormalizer.java b/server/sonar-server/src/main/java/org/sonar/server/issue/index/IssueNormalizer.java
new file mode 100644 (file)
index 0000000..27f7116
--- /dev/null
@@ -0,0 +1,40 @@
+/*
+ * SonarQube, open source software quality management tool.
+ * Copyright (C) 2008-2014 SonarSource
+ * mailto:contact AT sonarsource DOT com
+ *
+ * SonarQube 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.
+ *
+ * SonarQube 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 this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ */
+package org.sonar.server.issue.index;
+
+import org.elasticsearch.action.update.UpdateRequest;
+import org.sonar.core.issue.db.IssueDto;
+import org.sonar.server.db.DbClient;
+import org.sonar.server.search.BaseNormalizer;
+import org.sonar.server.search.IndexDefinition;
+
+import java.util.List;
+
+public class IssueNormalizer extends BaseNormalizer<IssueDto, String> {
+
+  protected IssueNormalizer(DbClient db) {
+    super(IndexDefinition.ISSUES, db);
+  }
+
+  @Override
+  public List<UpdateRequest> normalize(IssueDto dto) {
+    return null;
+  }
+}