View Javadoc

1   package pt.digitalis.maven.ormgenerator;
2   
3   import java.util.ArrayList;
4   import java.util.Collection;
5   
6   
7   /**
8    * The root pojo that represent the configuration file. 
9    * 
10   * @author António Silva <a href="mailto:asilva@digitalis.pt">asilva@digitalis.pt</a>
11   * @created Nov 6, 2007
12   * 
13   */
14  public class ServiceCfg {
15  
16      /**
17       * A list of the Services that are in the configuration file 
18       */
19      Collection<Services> services = new ArrayList<Services>();
20  
21      /**
22       * @return Collection of service packages
23       */
24      public Collection<Services> getServices() {
25          return services;
26      }
27  
28  }