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

















                                                                                 
                                 

                                           
                                                                                       
              
                                   


                         
                              
                        






                                          
/*******************************************************************************
 * Copyright (c) 2009 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;

import org.eclipse.osee.framework.core.enums.BranchArchivedState;

/**
 * @author Megumi Telles
 */
public class ChangeBranchArchiveStateRequest {
   private final long branchUuid;
   private final BranchArchivedState state;

   public ChangeBranchArchiveStateRequest(long branchUuid, BranchArchivedState state) {
      super();
      this.branchUuid = branchUuid;
      this.state = state;
   }

   public long getBranchId() {
      return branchUuid;
   }

   public BranchArchivedState getState() {
      return state;
   }

}

Back to the top