You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

db-project-branches.proto 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. SonarQube, open source software quality management tool.
  3. Copyright (C) 2008-2016 SonarSource
  4. mailto:contact AT sonarsource DOT com
  5. SonarQube is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Lesser General Public
  7. License as published by the Free Software Foundation; either
  8. version 3 of the License, or (at your option) any later version.
  9. SonarQube is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. Lesser General Public License for more details.
  13. You should have received a copy of the GNU Lesser General Public License
  14. along with this program; if not, write to the Free Software Foundation,
  15. Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  16. */
  17. // Structure of db column PROJECT_BRANCHES.PULL_REQUEST_DATA
  18. syntax = "proto3";
  19. package sonarqube.db.project_branches;
  20. // The java package can be changed without breaking compatibility.
  21. // it impacts only the generated Java code.
  22. option java_package = "org.sonar.db.protobuf";
  23. option optimize_for = SPEED;
  24. message PullRequestData {
  25. string branch = 1;
  26. string title = 2;
  27. string url = 3;
  28. map<string, string> attributes = 4;
  29. }