Skip to main content
summaryrefslogtreecommitdiffstats
blob: 9949cf049715094ea37720d2122478c4bd110352 (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
/*******************************************************************************
 * 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.message.internal.translation;

import org.eclipse.osee.framework.core.enums.BranchType;
import org.eclipse.osee.framework.core.message.BranchCreationRequest;
import org.eclipse.osee.framework.core.translation.ITranslator;
import org.eclipse.osee.framework.jdk.core.type.PropertyStore;

/**
 * @author Roberto E. Escobar
 */
public class BranchCreationRequestTranslator implements ITranslator<BranchCreationRequest> {

   private static enum Fields {
      BRANCH_NAME,
      PARENT_BRANCH_ID,
      ASSOCIATED_ART_ID,

      BRANCH_TYPE,
      SOURCE_TX_ID,
      BRANCH_GUID,

      AUTHOR_ID,

      CREATION_COMMENT,
      MERGE_ADDRESSING_QUERY_ID,
      MERGE_DESTINATION_BRANCH_ID;
   }

   @Override
   public BranchCreationRequest convert(PropertyStore store) {
      String branchName = store.get(Fields.BRANCH_NAME.name());
      int parentBranchId = store.getInt(Fields.PARENT_BRANCH_ID.name());
      int associatedArtifactId = store.getInt(Fields.ASSOCIATED_ART_ID.name());

      BranchType branchType = BranchType.valueOf(store.get(Fields.BRANCH_TYPE.name()));
      int sourceTransactionId = store.getInt(Fields.SOURCE_TX_ID.name());
      String branchGuid = store.get(Fields.BRANCH_GUID.name());

      int authorId = store.getInt(Fields.AUTHOR_ID.name());

      String creationComment = store.get(Fields.CREATION_COMMENT.name());

      int mergeAddressingQueryId = store.getInt(Fields.MERGE_ADDRESSING_QUERY_ID.name());
      int destinationBranchId = store.getInt(Fields.MERGE_DESTINATION_BRANCH_ID.name());

      return new BranchCreationRequest(branchType, sourceTransactionId, parentBranchId, branchGuid, branchName,
         associatedArtifactId, authorId, creationComment, mergeAddressingQueryId, destinationBranchId);
   }

   @Override
   public PropertyStore convert(BranchCreationRequest object) {
      PropertyStore store = new PropertyStore();
      store.put(Fields.BRANCH_NAME.name(), object.getBranchName());
      store.put(Fields.PARENT_BRANCH_ID.name(), object.getParentBranchId());
      store.put(Fields.ASSOCIATED_ART_ID.name(), object.getAssociatedArtifactId());
      store.put(Fields.BRANCH_TYPE.name(), object.getBranchType().name());
      store.put(Fields.SOURCE_TX_ID.name(), object.getSourceTransactionId());
      store.put(Fields.BRANCH_GUID.name(), object.getBranchGuid());
      store.put(Fields.AUTHOR_ID.name(), object.getAuthorId());
      store.put(Fields.CREATION_COMMENT.name(), object.getCreationComment());

      store.put(Fields.MERGE_ADDRESSING_QUERY_ID.name(), object.getMergeAddressingQueryId());
      store.put(Fields.MERGE_DESTINATION_BRANCH_ID.name(), object.getMergeDestinationBranchId());

      return store;
   }

}

Back to the top