summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-core/src/test/java/org/openecomp/fusion/core/MockHibernateMappingLocations.java
blob: fea7cddad7049e0053d0053d8588be4aeeb26df7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package org.openecomp.fusion.core;

import org.openecomp.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;

@Component
@Profile("test")
public class MockHibernateMappingLocations implements HibernateMappingLocatable{

	@Override
	public Resource[] getMappingLocations() {
		return new Resource[]{new ClassPathResource("WEB-INF/fusion/orm/Fusion.hbm.xml"), new ClassPathResource("WEB-INF/fusion/orm/Workflow.hbm.xml")};
	}

	@Override
	public String[] getPackagesToScan() {
		return new String[] { "org.openecomp" };
	}

}