Skip to main content
summaryrefslogtreecommitdiffstats
blob: 9b2d60ccf79172975a8cf6cd8a5f57703015f96e (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
package org.eclipse.osee.ote;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;

/**
 * This defines the bundles to be loaded into the OTE Server.
 * 
 * @author Andrew M. Finkbeiner
 *
 */
public class Configuration implements Serializable {

   private static final long serialVersionUID = -3395485777990884086L;

   private ArrayList<ConfigurationItem> items;

   public Configuration() {
      items = new ArrayList<ConfigurationItem>();
   }
   
   public List<ConfigurationItem> getItems() {
      return items;
   }

   public void addItem(ConfigurationItem config) {
      items.add(config);
   }

}

Back to the top