Skip to main content
summaryrefslogblamecommitdiffstats
blob: 3212e6837ae9671aabe367281f16c16aff0933c9 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                                                 

                     
                                                    
                       












                                     







                                   
/*******************************************************************************
 * 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.model;

/**
 * @author Donald G. Dunne
 */
public class DispoProgramImpl implements DispoProgram {

   private String name;
   private Long uuid;

   public DispoProgramImpl(String name, Long uuid) {
      this.name = name;
      this.uuid = uuid;
   }

   @Override
   public String getName() {
      return name;
   }

   public void setName(String name) {
      this.name = name;
   }

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

   public void setUuid(Long uuid) {
      this.uuid = uuid;
   }
}

Back to the top