Upgraded the latest ONAP SDK
[policy/engine.git] / ONAP-SDK-APP / src / main / java / org / onap / portalapp / conf / HibernateMappingLocations.java
index ee73a5a..01591cc 100644 (file)
  */
 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,12 +36,6 @@ 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" };