(no commit message)
[utils] / test / enterprise / src / main / java / org / wamblee / test / persistence / PersistenceUnitDescription.java
index 4a16dc06d0522c863ef98252719488df1a7e1ea5..dc9fca84da6be36faa28b4c8e3f3bf4b7e0a5b1a 100644 (file)
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */ 
+ */
 package org.wamblee.test.persistence;
 
-
 /**
- * Describes a persistence unit. 
+ * Describes a persistence unit.
  * 
  * @author Erik Brakkee
  */
@@ -27,9 +26,12 @@ public class PersistenceUnitDescription {
     private String unitName;
 
     /**
-     * Constructs the description. 
-     * @param aJndiName Jndi name. 
-     * @param aUnitName Persistence unit name. 
+     * Constructs the description.
+     * 
+     * @param aJndiName
+     *            Jndi name.
+     * @param aUnitName
+     *            Persistence unit name.
      */
     public PersistenceUnitDescription(String aJndiName, String aUnitName) {
         jndiName = aJndiName;
@@ -37,14 +39,14 @@ public class PersistenceUnitDescription {
     }
 
     /**
-     * @return JNDI name. 
+     * @return JNDI name.
      */
     public String getJndiName() {
         return jndiName;
     }
 
     /**
-     * Persistence unit name. 
+     * Persistence unit name.
      */
     public String getUnitName() {
         return unitName;