Upgraded the latest ONAP SDK
[policy/engine.git] / ONAP-SDK-APP / src / main / java / org / onap / portalapp / conf / HibernateMappingLocations.java
  * limitations under the License.
  * ================================================================================
  */
-package org.openecomp.portalapp.conf;
+package org.onap.portalapp.conf;
 
+import org.onap.portalsdk.core.conf.HibernateMappingLocatable;
 import org.springframework.context.annotation.Profile;
 import org.springframework.core.io.ClassPathResource;
 import org.springframework.core.io.Resource;
 import org.springframework.stereotype.Component;
 
-import org.openecomp.portalsdk.core.conf.HibernateMappingLocatable;
-
 @Component
 @Profile("src")
 public class HibernateMappingLocations implements HibernateMappingLocatable {
 
-       /*
-        * (non-Javadoc)
-        * 
-        * @see org.openecomp.portalsdk.core.conf.HibernateMappingLocatable#
-        * getMappingLocations()
-        */
        @Override
        public Resource[] getMappingLocations() {
                return new Resource[] { new ClassPathResource("../fusion/orm/Fusion.hbm.xml"),
@@ -43,15 +36,9 @@ public class HibernateMappingLocations implements HibernateMappingLocatable {
                                new ClassPathResource("../fusion/orm/RNoteBookIntegration.hbm.xml") };
        }
 
-       /*
-        * (non-Javadoc)
-        * 
-        * @see org.openecomp.portalsdk.core.conf.HibernateMappingLocatable#
-        * getPackagesToScan()
-        */
        @Override
        public String[] getPackagesToScan() {
-               return new String[] { "org.onap", "org.openecomp" };
+               return new String[] { "org.onap" };
        }
 
 }