Skip to main content
summaryrefslogtreecommitdiffstats
blob: dd6e8ba010129b9a3c64f0659424d7c63c564b6e (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
/*******************************************************************************
 * Copyright (c) 2013 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.disposition.rest.internal;

import org.eclipse.osee.disposition.model.DispoProgram;
import org.eclipse.osee.disposition.model.DispoProgramImpl;
import org.eclipse.osee.disposition.rest.util.DispoFactory;
import org.eclipse.osee.framework.core.data.IOseeBranch;

/**
 * @author Donald G. Dunne
 */
public class DispoFactoryImpl implements DispoFactory {

   @Override
   public DispoProgram createProgram(String name) {
      return createProgram(name, name, new Long(name.hashCode()));
   }

   @Override
   public DispoProgram createProgram(String name, String guid, Long uuid) {
      return new DispoProgramImpl(name, guid, uuid);
   }

   @Override
   public DispoProgram createProgram(IOseeBranch branch) {
      return new DispoProgramImpl(branch.getName(), branch.getGuid(), branch.getUuid());
   }
}

Back to the top