Removed DOCUMENT ME comments that were generated and applied source code
[utils] / test / enterprise / src / main / java / org / wamblee / support / persistence / PersistenceUnitDescription.java
1 package org.wamblee.support.persistence;
2
3 import org.dbunit.dataset.filter.ITableFilterSimple;
4
5 public class PersistenceUnitDescription {
6
7     private String jndiName;
8     private String unitName;
9     private ITableFilterSimple tables;
10
11     public PersistenceUnitDescription(String aJndiName, String aUnitName,
12         ITableFilterSimple aTables) {
13         jndiName = aJndiName;
14         unitName = aUnitName;
15         tables = aTables;
16     }
17
18     public String getJndiName() {
19         return jndiName;
20     }
21
22     public String getUnitName() {
23         return unitName;
24     }
25
26     public ITableFilterSimple getTables() {
27         return tables;
28     }
29 }