Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5e82317f0cf81ee0547708f950c3d832fc08ae14 (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
/*********************************************************************
 * Copyright (c) 2016 Boeing
 *
 * This program and the accompanying materials are made
 * available under the terms of the Eclipse Public License 2.0
 * which is available at https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     Boeing - initial API and implementation
 **********************************************************************/

package org.eclipse.osee.framework.core.data;

import java.util.List;

/**
 * @author Roberto E. Escobar
 */
public class BranchViewData {

   private BranchId branch;

   private List<ArtifactId> branchViews;

   public BranchViewData() {
      // Do Nothing
   }

   public BranchViewData(BranchId branch, List<ArtifactId> branchViews) {
      this.branch = branch;
      this.branchViews = branchViews;
   }

   public BranchId getBranch() {
      return branch;
   }

   public List<ArtifactId> getBranchViews() {
      return branchViews;
   }

   public void setBranchId(BranchId branch) {
      this.branch = branch;
   }

   public void setBranchViews(List<ArtifactId> branchViews) {
      this.branchViews = branchViews;
   }
}

Back to the top