Skip to main content
summaryrefslogtreecommitdiffstats
blob: 978cfa419932cde49d7bdfb535c988d7ffe3abcc (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*******************************************************************************
 * Copyright (c) 2004, 2007 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.data;

import org.eclipse.osee.framework.jdk.core.type.Id;
import org.eclipse.osee.framework.jdk.core.type.NamedId;
import org.eclipse.osee.framework.jdk.core.type.NamedIdBase;
import org.eclipse.osee.framework.jdk.core.util.GUID;

/**
 * @author Ryan D. Brooks
 * @author Donald G. Dunne
 */
public interface ArtifactToken extends ArtifactId, HasArtifactType, HasBranch, NamedId {
   default ArtifactTypeId getArtifactTypeId() {
      return null;
   }

   public static ArtifactToken valueOf(Id id, BranchId branch) {
      return valueOf(id.getId(), GUID.create(), null, branch, null);
   }

   public static ArtifactToken valueOf(ArtifactId id, BranchId branch) {
      return valueOf(id.getId(), GUID.create(), null, branch, null);
   }

   public static ArtifactToken valueOf(long id, BranchId branch) {
      return valueOf(id, GUID.create(), null, branch, null);
   }

   public static ArtifactToken valueOf(long id, String name, BranchId branch) {
      return valueOf(id, GUID.create(), name, branch, null);
   }

   public static ArtifactToken valueOf(long id, String name, BranchId branch, IArtifactType artifactType) {
      return valueOf(id, GUID.create(), name, branch, artifactType);
   }

   public static ArtifactToken valueOf(long id, String guid, String name, BranchId branch, IArtifactType artifactType) {
      final class ArtifactTokenImpl extends NamedIdBase implements ArtifactToken {
         private final BranchId branch;
         private final IArtifactType artifactType;
         private final String guid;

         public ArtifactTokenImpl(Long id, String guid, String name, BranchId branch, IArtifactType artifactType) {
            super(id, name);
            this.branch = branch;
            this.artifactType = artifactType;
            this.guid = guid;
         }

         @Override
         public IArtifactType getArtifactType() {
            return artifactType;
         }

         @Override
         public BranchId getBranch() {
            return branch;
         }

         @Override
         public String getGuid() {
            return guid;
         }

         @Override
         public Long getUuid() {
            return getId();
         }

         @Override
         public boolean equals(Object obj) {
            boolean equal = super.equals(obj);
            if (equal && obj instanceof HasBranch) {
               return isOnSameBranch((HasBranch) obj);
            }
            return equal;
         }
      }
      return new ArtifactTokenImpl(id, guid, name, branch, artifactType);
   }

}

Back to the top