Store and Validate a JSON Object
[cps.git] / cps / cps-ri / src / main / java / org / onap / cps / spi / entities / ModuleEntity.java
@@ -17,7 +17,7 @@
  *  ============LICENSE_END=========================================================
  */
 
-package org.onap.cps.spi.impl.entities;
+package org.onap.cps.spi.entities;
 
 import javax.persistence.Column;
 import javax.persistence.Entity;
@@ -55,6 +55,13 @@ public class ModuleEntity {
     @Column
     private String revision;
 
+    /**
+     * Initialize a module entity.
+     *
+     * @param name the module name.
+     * @param moduleContent the module content.
+     * @param revision the revision number of the module.
+     */
     public ModuleEntity(String name, String moduleContent, String revision) {
         this.name = name;
         this.moduleContent = moduleContent;