c2a514399fb58ea315c95d6883b782feb5435883
[ccsdk/features.git] /
1 package org.onap.ccsdk.features.sdnr.wt.odlux.model.bundles;
2
3 import java.util.ArrayList;
4 import java.util.List;
5
6 public class OdluxBundleList extends ArrayList<OdluxBundle>{
7         
8         /**
9          * 
10          */
11         private static final long serialVersionUID = 8365348398621906220L;
12
13         public List<String> getNames(){
14                 final List<String> names=new ArrayList<String>();
15                 for(OdluxBundle b:this)
16                         names.add(b.getBundleName());
17                 return names;
18         }
19
20 }