Skip to content
Snippets Groups Projects

Add DB impl for validation state storage

Merged Martin Lowe requested to merge (removed):malowe/modernization/db-update into master

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
1 CREATE TABLE `CommitValidationMessage` (
2 `id` int(11) NOT NULL AUTO_INCREMENT,
3 `commit_id` int(11) NOT NULL,
  • Sébastien Heurtematte
  • 32
    33 public CommitValidationStatusGrouping(String fingerprint, CommitValidationStatus commit) {
    34 this.compositeId = new GroupingCompositeId();
    35 this.compositeId.setFingerprint(fingerprint);
    36 this.compositeId.setCommit(commit);
    37 }
    38
    39 @Override
    40 public GroupingCompositeId getId() {
    41 return compositeId;
    42 }
    43
    44 /**
    45 * @return the compositeId
    46 */
    47 public GroupingCompositeId getCompositeId() {
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Please register or sign in to reply
    Loading