val content = JacksonUtils.getContent("./../../../../components/scripts/python/ccsdk_blueprints/sample_blueprint_component.py")
- val abstractComponentFunction = PythonExecutorUtils.getPythonComponent("/home/brindasanth/onap/apps/components/scripts/python/ccsdk_blueprints", pythonPath, content,
+ val abstractComponentFunction = PythonExecutorUtils.getPythonComponent("./../../../../components/scripts/python/ccsdk_blueprints", pythonPath, content,
"SampleBlueprintComponent", properties)
assertNotNull(abstractComponentFunction, "failed to get python component")
@Service
class BluePrintCatalogServiceImpl(private val bluePrintCoreConfiguration: BluePrintCoreConfiguration) : BluePrintCatalogService {
- override fun uploadToDataBase(file: String): String {
+ override fun uploadToDataBase(file: String, validate : Boolean): String {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
.plus(name).plus(File.separator).plus(version)
}
+
+ override fun downloadFromDataBase(uuid: String, path: String): String {
+ TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
+ }
}
\ No newline at end of file
@Service
class MockBluePrintCatalogService : BluePrintCatalogService {
- override fun uploadToDataBase(file: String): String {
+ override fun uploadToDataBase(file: String, validate : Boolean): String {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
assertNotNull(version, "failed to get blueprint version")
return "./../../../../../components/model-catalog/blueprint-model/starter-blueprint/baseconfiguration"
}
+
+ override fun downloadFromDataBase(uuid: String, path: String): String {
+ TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
+ }
}
\ No newline at end of file