Skip to main content
summaryrefslogtreecommitdiffstats
blob: 90b2dbe511d6722b884a7fc81164cb219fabe132 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*******************************************************************************
 * Copyright (c) 2009 Boeing.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.framework.core.message;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.eclipse.osee.framework.jdk.core.type.Triplet;

/**
 * @author Roberto E. Escobar
 */
public abstract class AbstractBranchCacheMessage {

   private final List<BranchRow> rows;
   private final Map<Long, Long> childToParent;
   private final Map<Long, Integer> branchToBaseTx;
   private final Map<Long, Integer> branchToSourceTx;
   private final Map<Long, Integer> branchToAssocArt;
   private final Map<Long, String[]> branchToAliases;
   private final List<Triplet<Long, Long, Long>> srcDestMerge;

   protected AbstractBranchCacheMessage() {
      this.rows = new ArrayList<BranchRow>();
      this.childToParent = new HashMap<Long, Long>();
      this.branchToBaseTx = new HashMap<Long, Integer>();
      this.branchToSourceTx = new HashMap<Long, Integer>();
      this.branchToAssocArt = new HashMap<Long, Integer>();
      this.branchToAliases = new HashMap<Long, String[]>();
      this.srcDestMerge = new ArrayList<Triplet<Long, Long, Long>>();
   }

   public List<BranchRow> getBranchRows() {
      return rows;
   }

   public Map<Long, Long> getChildToParent() {
      return childToParent;
   }

   public Map<Long, Integer> getBranchToBaseTx() {
      return branchToBaseTx;
   }

   public Map<Long, Integer> getBranchToSourceTx() {
      return branchToSourceTx;
   }

   public Map<Long, Integer> getBranchToAssocArt() {
      return branchToAssocArt;
   }

   public Map<Long, String[]> getBranchAliases() {
      return branchToAliases;
   }

   public List<Triplet<Long, Long, Long>> getMergeBranches() {
      return srcDestMerge;
   }

}

Back to the top