├── .gitignore ├── .remark_ignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING ├── Jenkinsfile ├── LICENSE ├── Readme.md ├── core-bundles ├── feature │ ├── build.properties │ ├── feature.xml │ └── pom.xml ├── language │ ├── org.eclipse.vorto.editor.datatype.ide │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── editor │ │ │ └── datatype │ │ │ └── ide │ │ │ ├── DatatypeIdeModule.xtend │ │ │ └── DatatypeIdeSetup.xtend │ ├── org.eclipse.vorto.editor.datatype.ui │ │ ├── .gitignore │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── about.html │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── vorto │ │ │ │ └── editor │ │ │ │ └── datatype │ │ │ │ └── ui │ │ │ │ ├── DatatypeUiModule.xtend │ │ │ │ ├── contentassist │ │ │ │ └── DatatypeProposalProvider.xtend │ │ │ │ ├── labeling │ │ │ │ ├── DatatypeDescriptionLabelProvider.xtend │ │ │ │ └── DatatypeLabelProvider.xtend │ │ │ │ ├── outline │ │ │ │ └── DatatypeOutlineTreeProvider.xtend │ │ │ │ ├── quickfix │ │ │ │ └── DatatypeQuickfixProvider.xtend │ │ │ │ └── typecreator │ │ │ │ └── TypeTemplate.xtend │ │ └── templates │ │ │ └── templates.xml │ ├── org.eclipse.vorto.editor.datatype │ │ ├── .gitignore │ │ ├── 1_Generate_Datatype.launch │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── about.html │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── editor │ │ │ └── datatype │ │ │ ├── Datatype.xtext │ │ │ ├── DatatypeRuntimeModule.xtend │ │ │ ├── DatatypeStandaloneSetup.xtend │ │ │ ├── GenerateDatatype.mwe2 │ │ │ ├── QualifiedNameWithVersionProvider.java │ │ │ ├── converter │ │ │ └── DatatypeValueConverter.java │ │ │ ├── formatting │ │ │ └── DatatypeFormatter.xtend │ │ │ ├── generator │ │ │ └── DatatypeGenerator.xtend │ │ │ ├── internal │ │ │ └── validation │ │ │ │ ├── AccordinglyValueValidator.xtend │ │ │ │ ├── ConstraintValueValidator.xtend │ │ │ │ ├── NullableValueValidator.xtend │ │ │ │ ├── RegexValueValidator.xtend │ │ │ │ └── ScalarValueValidator.xtend │ │ │ ├── scoping │ │ │ └── DatatypeScopeProvider.xtend │ │ │ ├── serializer │ │ │ ├── DatatypeSemanticSequencer.xtend │ │ │ └── DatatypeSyntacticSequencer.xtend │ │ │ └── validation │ │ │ ├── ConstraintValidatorFactory.xtend │ │ │ ├── DatatypeSystemMessage.xtend │ │ │ ├── DatatypeValidator.xtend │ │ │ ├── PropertyConstraintMappingValidation.xtend │ │ │ └── ValidatorUtils.xtend │ ├── org.eclipse.vorto.editor.functionblock.ide │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── editor │ │ │ └── functionblock │ │ │ └── ide │ │ │ ├── FunctionblockIdeModule.xtend │ │ │ └── FunctionblockIdeSetup.xtend │ ├── org.eclipse.vorto.editor.functionblock.ui │ │ ├── .gitignore │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── about.html │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── vorto │ │ │ │ └── editor │ │ │ │ └── functionblock │ │ │ │ └── ui │ │ │ │ ├── FunctionblockUiModule.xtend │ │ │ │ ├── contentassist │ │ │ │ └── FunctionblockProposalProvider.xtend │ │ │ │ ├── highlight │ │ │ │ └── FunctionBlockHighlightConfiguration.xtend │ │ │ │ ├── labeling │ │ │ │ ├── FunctionblockDescriptionLabelProvider.xtend │ │ │ │ └── FunctionblockLabelProvider.xtend │ │ │ │ ├── outline │ │ │ │ ├── FunctionblockOutlineTreeProvider.xtend │ │ │ │ └── InfomodelOutlineTreeProvider.xtend │ │ │ │ └── quickfix │ │ │ │ └── FunctionblockQuickfixProvider.xtend │ │ └── templates │ │ │ └── templates.xml │ ├── org.eclipse.vorto.editor.functionblock │ │ ├── .gitignore │ │ ├── 2_Generate_Functionblock.launch │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── about.html │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── editor │ │ │ └── functionblock │ │ │ ├── Functionblock.xtext │ │ │ ├── FunctionblockRuntimeModule.xtend │ │ │ ├── FunctionblockStandaloneSetup.xtend │ │ │ ├── GenerateFunctionblock.mwe2 │ │ │ ├── QualifiedNameWithVersionProvider.java │ │ │ ├── formatting │ │ │ └── FunctionblockFormatter.xtend │ │ │ ├── generator │ │ │ └── FunctionblockGenerator.xtend │ │ │ ├── scoping │ │ │ └── FunctionblockScopeProvider.xtend │ │ │ ├── serializer │ │ │ ├── FunctionblockSemanticSequencer.xtend │ │ │ └── FunctionblockSyntacticSequencer.xtend │ │ │ └── validation │ │ │ ├── FbValidatorUtils.xtend │ │ │ ├── FunctionblockValidator.xtend │ │ │ ├── SystemMessage.xtend │ │ │ ├── TypeFileAccessingHelper.xtend │ │ │ └── TypeHelper.java │ ├── org.eclipse.vorto.editor.infomodel.ide │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── editor │ │ │ └── infomodel │ │ │ └── ide │ │ │ ├── InformationModelIdeModule.xtend │ │ │ └── InformationModelIdeSetup.xtend │ ├── org.eclipse.vorto.editor.infomodel.ui │ │ ├── .gitignore │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── about.html │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── editor │ │ │ └── infomodel │ │ │ └── ui │ │ │ ├── InformationModelUiModule.xtend │ │ │ ├── contentassist │ │ │ └── InformationModelProposalProvider.xtend │ │ │ ├── labeling │ │ │ ├── InformationModelDescriptionLabelProvider.xtend │ │ │ └── InformationModelLabelProvider.xtend │ │ │ ├── outline │ │ │ └── InformationModelOutlineTreeProvider.xtend │ │ │ └── quickfix │ │ │ └── InformationModelQuickfixProvider.xtend │ ├── org.eclipse.vorto.editor.infomodel │ │ ├── .gitignore │ │ ├── 3_Generate_Infomodel.launch │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── about.html │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── editor │ │ │ └── infomodel │ │ │ ├── GenerateInformationModel.mwe2 │ │ │ ├── InformationModel.xtext │ │ │ ├── InformationModelRuntimeModule.xtend │ │ │ ├── InformationModelStandaloneSetup.xtend │ │ │ ├── QualifiedNameWithVersionProvider.java │ │ │ ├── formatting │ │ │ └── InformationModelFormatter.xtend │ │ │ ├── generator │ │ │ └── InformationModelGenerator.xtend │ │ │ ├── scoping │ │ │ └── InformationModelScopeProvider.xtend │ │ │ ├── serializer │ │ │ ├── InformationModelSemanticSequencer.xtend │ │ │ └── InformationModelSyntacticSequencer.xtend │ │ │ └── validation │ │ │ ├── InformationModelValidator.xtend │ │ │ └── SystemMessage.xtend │ ├── org.eclipse.vorto.editor.mapping.ide │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── editor │ │ │ └── mapping │ │ │ └── ide │ │ │ ├── MappingIdeModule.xtend │ │ │ └── MappingIdeSetup.xtend │ ├── org.eclipse.vorto.editor.mapping.ui │ │ ├── .gitignore │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── about.html │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── editor │ │ │ └── mapping │ │ │ └── ui │ │ │ ├── MappingUiModule.xtend │ │ │ ├── contentassist │ │ │ └── MappingProposalProvider.xtend │ │ │ ├── labeling │ │ │ ├── MappingDescriptionLabelProvider.xtend │ │ │ └── MappingLabelProvider.xtend │ │ │ ├── outline │ │ │ └── MappingOutlineTreeProvider.xtend │ │ │ └── quickfix │ │ │ └── MappingQuickfixProvider.xtend │ ├── org.eclipse.vorto.editor.mapping │ │ ├── .gitignore │ │ ├── 4_Generate_Mapping.launch │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── about.html │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── editor │ │ │ └── mapping │ │ │ ├── GenerateMapping.mwe2 │ │ │ ├── Mapping.xtext │ │ │ ├── MappingRuntimeModule.xtend │ │ │ ├── MappingStandaloneSetup.xtend │ │ │ ├── QualifiedNameWithVersionProvider.java │ │ │ ├── formatting │ │ │ └── MappingFormatter.xtend │ │ │ ├── generator │ │ │ └── MappingGenerator.xtend │ │ │ ├── scoping │ │ │ └── MappingScopeProvider.xtend │ │ │ ├── serializer │ │ │ ├── MappingSemanticSequencer.xtend │ │ │ └── MappingSyntacticSequencer.xtend │ │ │ └── validation │ │ │ └── MappingValidator.xtend │ ├── org.eclipse.vorto.editor │ │ ├── .gitignore │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── about.html │ │ ├── build.properties │ │ ├── plugin.properties │ │ ├── pom.xml │ │ └── src │ │ │ ├── .gitkeep │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── editor │ │ │ └── scope │ │ │ ├── DatatypeScopeHelper.java │ │ │ └── ProxyUriReferenceBasedScope.java │ └── pom.xml ├── meta-model │ ├── org.eclipse.vorto.core │ │ ├── .gitignore │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── about.html │ │ ├── build.properties │ │ ├── model │ │ │ ├── Datatype.ecore │ │ │ ├── Datatype.genmodel │ │ │ ├── Functionblock.ecore │ │ │ ├── Functionblock.genmodel │ │ │ ├── InformationModel.aird │ │ │ ├── InformationModel.ecore │ │ │ ├── InformationModel.genmodel │ │ │ ├── Mapping.ecore │ │ │ ├── Mapping.genmodel │ │ │ ├── Model.ecore │ │ │ ├── Model.genmodel │ │ │ └── informationmodel class diagram.svg │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── schema │ │ │ ├── org.eclipse.vorto.core.IModelRepository.exsd │ │ │ ├── org_eclipse_vorto_core_ModelParser.exsd │ │ │ └── org_eclipse_vorto_modelchange_Observers.exsd │ │ └── src │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── core │ │ │ └── api │ │ │ └── model │ │ │ ├── BuilderUtils.java │ │ │ ├── GenerateModels.mwe2 │ │ │ ├── ModelConversionUtils.java │ │ │ └── model │ │ │ ├── ModelId.java │ │ │ ├── ModelIdFactory.java │ │ │ └── ModelType.java │ └── pom.xml ├── pom.xml ├── targetplatform │ ├── pom.xml │ └── vorto.target └── updatesite │ ├── category.xml │ └── pom.xml ├── device-adapter ├── Readme.md ├── device-adapter-api │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── vorto │ │ └── deviceadapter │ │ ├── CallbackContext.java │ │ ├── DeviceInfo.java │ │ ├── IDataCallback.java │ │ ├── IDeviceAdapter.java │ │ ├── IDeviceData.java │ │ ├── IDeviceDiscovery.java │ │ ├── IDeviceDiscoveryCallback.java │ │ └── INewConfiguration.java ├── docs │ └── overview.png └── pom.xml ├── docker-compose-build.yml ├── docker-compose.yml ├── docker ├── MyFirstModel_1.0.0.zip ├── Readme.md ├── Repository_Dockerfile ├── config │ ├── 3rd-party-generators │ │ └── Readme.md │ ├── application.yml │ ├── generators │ │ └── Readme.md │ ├── repository │ │ └── Readme.md │ └── vorto-repository-config-mysql.json ├── docker_push ├── docs │ ├── import_highlight.png │ ├── import_view.png │ └── inital_view.png ├── mysql_spring.yml ├── scripts │ ├── run.py │ └── wait-for-it.sh └── vorto-variables.env ├── docs ├── community.md ├── gettingstarted.md ├── images │ ├── Vorto_MetaModel.jpeg │ ├── add_oath_client │ │ ├── add_client_1.png │ │ ├── add_client_2.png │ │ ├── add_client_3.png │ │ ├── add_client_4.png │ │ └── add_client_5.png │ ├── getting-started-ar2.png │ ├── help_dsl_elements.png │ ├── import_model_success.png │ ├── m2m_tc_new_vorto_function_block_model_wizard.png │ ├── m2m_tc_vrm_software_updates_install_m2m_details_1.png │ ├── m2m_tc_vrm_software_updates_install_vorto_repository_present.png │ ├── m2m_tc_vrm_software_updates_m2m_review_license_1.png │ ├── m2m_tc_vrm_software_updates_restart.png │ ├── m2m_tc_vrm_software_updates_selected_m2m_plugin_1.png │ ├── model_import_single.png │ ├── model_upload_validation.png │ ├── payloadmapping.png │ ├── release_notes │ │ ├── 0.10.0-m2 │ │ │ └── webeditor_details.png │ │ └── 0.9.x │ │ │ ├── vorto_features_cli_tool.png │ │ │ ├── vorto_features_models.png │ │ │ ├── vorto_repository_generators.png │ │ │ └── vorto_repository_search.png │ ├── run_java.PNG │ ├── tutorials │ │ ├── connect_alexa │ │ │ ├── alexa-add-SkillID.png │ │ │ ├── alexa-add-configuration.png │ │ │ ├── alexa-add-intent.png │ │ │ ├── alexa-add-lambdajs-role.png │ │ │ ├── alexa-add-lambdajs.png │ │ │ ├── alexa-add-skill.png │ │ │ ├── alexa-add-skillsetTrigger.png │ │ │ ├── alexa-add-triggerConfig.png │ │ │ ├── alexa-add-utterences.png │ │ │ ├── alexa-create-function.png │ │ │ ├── alexa-function-details.png │ │ │ ├── alexa-generator.png │ │ │ ├── alexa-getStarted.png │ │ │ ├── alexa-skill-config.png │ │ │ ├── alexa-skillset-id.png │ │ │ ├── alexa-test.png │ │ │ └── browse_xdk.png │ │ ├── connect_esp8266 │ │ │ ├── arduino_generator.png │ │ │ ├── cover.png │ │ │ └── mqtt-cert.png │ │ ├── connect_grovepi │ │ │ ├── cover.png │ │ │ ├── postman_json.png │ │ │ └── python-generator.png │ │ ├── connect_java │ │ │ ├── cover.png │ │ │ └── java_generator.PNG │ │ ├── create_new_project │ │ │ ├── vorto_create_new_vorto_project_dialog.png │ │ │ └── vorto_new_vorto_project_created.png │ │ ├── create_openapi │ │ │ ├── generate_openAPI.png │ │ │ ├── openAPI_plugin.png │ │ │ ├── openAPI_v2_generator.png │ │ │ └── openAPI_view.png │ │ ├── create_repository │ │ │ ├── Collaborate_users_ADD_USER.PNG │ │ │ ├── Collaborate_users_default.PNG │ │ │ ├── Collaborate_users_edit.PNG │ │ │ ├── Collaborate_users_edit_role.PNG │ │ │ ├── Collaborate_users_link.PNG │ │ │ ├── Create_repository_official_namespace.PNG │ │ │ ├── Create_repository_official_namespace_link.PNG │ │ │ ├── Create_repository_popUp.PNG │ │ │ ├── Update_repository_official_namespace.PNG │ │ │ ├── create_first_repository.PNG │ │ │ ├── edit_repository_link.PNG │ │ │ ├── edit_repository_popUp_add.PNG │ │ │ ├── initial_screen.PNG │ │ │ └── request_official_namespace.PNG │ │ ├── create_thing │ │ │ ├── bearer_token.png │ │ │ ├── code_generators.png │ │ │ ├── import_jspm.png │ │ │ ├── oauth2_client.png │ │ │ ├── popup.PNG │ │ │ ├── pre_requeset_script.png │ │ │ ├── provision_device_dl.PNG │ │ │ ├── raspbi_IM.png │ │ │ └── service_isntance_id.png │ │ ├── decouple_tutorial │ │ │ ├── mappingEditor.png │ │ │ ├── middlewareMonitoringLog.png │ │ │ ├── normalized.png │ │ │ ├── openapi.png │ │ │ ├── overview.png │ │ │ ├── overview2.jpg │ │ │ ├── provisionThing.png │ │ │ ├── registerThing.png │ │ │ ├── stepOneOverview.png │ │ │ └── stepTwoOverview.png │ │ ├── defining_data_types │ │ │ ├── m2m_tc_create_a_new_entity_dialog.png │ │ │ ├── m2m_tc_new_data_type_entity.png │ │ │ └── vorto_select_vorto_project.png │ │ ├── defining_function_blocks │ │ │ ├── m2m_tc_create_function_block_designer_dialog_2.png │ │ │ ├── m2m_tc_create_function_block_generated_source_1.png │ │ │ └── vorto_select_vorto_project.png │ │ ├── defining_information_models │ │ │ ├── m2m_tc_create_information_model_dialog.png │ │ │ ├── m2m_tc_drag_drop_function_block_to_information_model.png │ │ │ ├── m2m_tc_information_model_dsl_editor.png │ │ │ └── vorto_select_vorto_project.png │ │ ├── describe_device_eclipseide │ │ │ ├── autocomplete.png │ │ │ ├── complete_infomodel.png │ │ │ ├── export.png │ │ │ ├── export_2.png │ │ │ ├── functionblock_description.png │ │ │ ├── import.png │ │ │ ├── import_2.png │ │ │ ├── infomodel.png │ │ │ ├── infomodel_description.png │ │ │ └── new_project.png │ │ ├── getting_started │ │ │ ├── create_function_block_designer_btn.png │ │ │ ├── create_function_block_designer_name.png │ │ │ ├── create_function_block_editor.png │ │ │ └── create_function_block_generator.png │ │ ├── import_model │ │ │ ├── Model_Import_Browse.PNG │ │ │ ├── Model_Import_Import.PNG │ │ │ ├── Model_Import_Import_Success.PNG │ │ │ ├── Model_Import_Open_Model.PNG │ │ │ ├── Model_Import_Open_Model_Click.PNG │ │ │ ├── Model_Import_Open_Model_Release.PNG │ │ │ ├── Model_Import_Open_Model_Release_Pop_Up.PNG │ │ │ ├── Model_Import_Open_Model_Release_Version.PNG │ │ │ ├── Model_Import_Open_Model_Release_Version_2.PNG │ │ │ ├── Model_Import_Release_2.PNG │ │ │ ├── Model_Import_Upload.PNG │ │ │ ├── Model_Import_Upload_Error.PNG │ │ │ ├── Model_Import_linkPNG.PNG │ │ │ ├── Model_Import_namespace_model.PNG │ │ │ └── Model_Import_namespace_repository.PNG │ │ ├── integrate_kinesis │ │ │ ├── cover.png │ │ │ ├── kinesis_discover_schema.png │ │ │ ├── overview_kinesis_vorto.png │ │ │ ├── schemaDiscovery.png │ │ │ └── sql.png │ │ ├── managing_collaborators │ │ │ ├── add_collaborator.png │ │ │ ├── collaborator_overview.png │ │ │ └── managing_collaborators.png │ │ ├── managing_namespaces │ │ │ ├── create_namespace.png │ │ │ ├── define_namepsace.png │ │ │ └── namespace_created.png │ │ ├── payload_mapping │ │ │ ├── create_mapping_AWSIoTButtonPayloadMapping.png │ │ │ ├── create_mapping_DistanceSensor.png │ │ │ ├── create_mapping_DistanceSensorPayload.png │ │ │ ├── create_mapping_payloadDistanceMapping.png │ │ │ ├── create_mapping_payloadDistanceSensorMapping.png │ │ │ ├── create_mapping_payloadVoltageMapping.png │ │ │ ├── create_model_awsIotButton.png │ │ │ ├── edit_mapping.png │ │ │ ├── edit_mapping_BatteryVoltage.png │ │ │ ├── edit_mapping_Sensor.png │ │ │ └── edit_model.png │ │ ├── publishing_models │ │ │ ├── publish_model.png │ │ │ ├── published_model.png │ │ │ └── unpublished_model.png │ │ ├── registerdevice │ │ │ ├── step_1_select_thing_type.png │ │ │ ├── step_2_select_connector.png │ │ │ ├── step_3_select_authtype.png │ │ │ ├── step_4_deviceid.png │ │ │ └── summary.png │ │ ├── springbootApp │ │ │ ├── angularJS_gen.png │ │ │ ├── authorize_bosch_id.png │ │ │ ├── browse_xdk.png │ │ │ ├── copy_SubjectId.png │ │ │ ├── create_policy.png │ │ │ ├── create_policy_for_tech_user.png │ │ │ ├── edit_values.png │ │ │ ├── featureID.png │ │ │ ├── login_page.png │ │ │ ├── step3_5_publickey.png │ │ │ ├── subject_ID.png │ │ │ ├── thing_details.png │ │ │ ├── thing_features.png │ │ │ ├── thing_put_param.png │ │ │ ├── thing_rest_api.png │ │ │ ├── view_policy_for_tech_user.png │ │ │ ├── web_app.png │ │ │ └── xdk_thing.png │ │ ├── tisensor │ │ │ ├── tisensor_create_model.png │ │ │ ├── tisensor_create_model_button.png │ │ │ ├── tisensor_lifecycle.jpg │ │ │ ├── tisensor_lookup_button.png │ │ │ ├── tisensor_lookup_models.jpg │ │ │ ├── tisensor_model_overview.jpg │ │ │ └── tisensor_model_specs.png │ │ └── vorto_dashboard │ │ │ ├── asset_communication.png │ │ │ ├── configJson.png │ │ │ ├── download_UI.PNG │ │ │ ├── namespace.png │ │ │ ├── new_oauth_client.png │ │ │ ├── oauth_client.png │ │ │ └── oauth_client_details.png │ ├── vorto_cover.png │ ├── vorto_eclipse_vorto_download_marketplace_install_dialog.png │ ├── vorto_hono_kinesis.png │ └── vortolang-meta.png ├── release-notes.md ├── samplecode │ └── cloudapp │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── acme │ │ │ └── solution │ │ │ ├── GeolocationApp.java │ │ │ ├── config │ │ │ ├── ListenerConfiguration.java │ │ │ └── QPidConfiguration.java │ │ │ └── service │ │ │ └── AMQPListener.java │ │ └── resources │ │ ├── application.yml │ │ ├── log4j2.xml │ │ └── qpid.properties ├── specs │ ├── vorto_generator_plugin-2.0.yml │ ├── vorto_importer_plugin-2.0.yml │ └── vorto_repository-1.0.yml ├── tutorials │ ├── add_oath_client.md │ ├── adding_jwt_token_verification_provider.md │ ├── connect_esp8266.md │ ├── connect_javadevice.md │ ├── create_mapping_pipeline.md │ ├── create_openapi.md │ ├── create_thing.md │ ├── create_webapp_dashboard.md │ ├── describe_device-in-5min.md │ ├── describe_device_with_eclipse_ide.md │ ├── describe_tisensor.md │ ├── extend_mapping_pipeline_with_digital_twin.md │ ├── functionblock_mapping.md │ ├── integrate_aws_kinesis.md │ ├── managing_collaborators.md │ ├── managing_namespaces.md │ ├── model_comments.md │ ├── mqtt-python.md │ ├── publishing_models.md │ └── requesting_access_to_a_namespace.md └── vortolang-1.0.md ├── eclipse-java-vorto-style.xml ├── generators ├── Readme.md ├── generator-boschiotsuite │ ├── Readme.md │ ├── boschiotsuite-cloud │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── vorto │ │ │ │ │ └── codegen │ │ │ │ │ └── bosch │ │ │ │ │ ├── BoschIoTSuiteGenerator.java │ │ │ │ │ └── templates │ │ │ │ │ ├── BoschGeneratorConfigUI.xtend │ │ │ │ │ ├── ProvisionDeviceScriptTemplate.xtend │ │ │ │ │ └── ProvisioningAPIRequestTemplate.xtend │ │ │ └── resources │ │ │ │ └── build.version │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── codegen │ │ │ └── bosch │ │ │ └── templates │ │ │ ├── BoschIoTSuiteGeneratorTest.java │ │ │ └── ProvisionDeviceScriptTemplateTest.xtend │ ├── images │ │ └── bosch-iot-suite-webui.png │ └── pom.xml ├── generator-eclipseditto │ ├── Readme.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── vorto │ │ │ │ └── codegen │ │ │ │ └── ditto │ │ │ │ ├── EclipseDittoGenerator.java │ │ │ │ └── schema │ │ │ │ ├── SchemaValidatorTask.java │ │ │ │ ├── Utils.xtend │ │ │ │ └── tasks │ │ │ │ ├── ValidationTaskFactory.java │ │ │ │ ├── ValidationTemplates.java │ │ │ │ └── template │ │ │ │ ├── ConstraintTemplate.xtend │ │ │ │ ├── DittoStructureTemplate.xtend │ │ │ │ ├── EntityValidationTemplate.xtend │ │ │ │ ├── EnumValidationTemplate.xtend │ │ │ │ ├── EventValidationTemplate.xtend │ │ │ │ ├── OperationPayloadValidationTemplate.xtend │ │ │ │ ├── OperationResponseValidationTemplate.xtend │ │ │ │ ├── OperationSingleParameterValidationTemplate.xtend │ │ │ │ ├── PrimitiveTypeValidationTemplate.xtend │ │ │ │ ├── PropertiesConfigurationValidationTemplate.xtend │ │ │ │ ├── PropertiesFaultValidationTemplate.xtend │ │ │ │ ├── PropertiesSinglePropertyValidationTemplate.xtend │ │ │ │ ├── PropertiesStatusValidationTemplate.xtend │ │ │ │ └── PropertiesValidationTemplate.xtend │ │ └── resources │ │ │ └── build.version │ │ └── test │ │ ├── java │ │ └── EclipseDittoGeneratorTest.java │ │ └── resources │ │ ├── defaultFileFormat │ │ ├── properties-configuration.schema.json │ │ └── properties-status.schema.json │ │ └── dsls │ │ ├── Battery.fbmodel │ │ ├── Location.fbmodel │ │ ├── MultiplTypeIm.infomodel │ │ ├── MultipleTypeFb.functionblock │ │ ├── ParentFbToBeExtended.functionblock │ │ ├── Percentage.type │ │ ├── RaspberryPi.infomodel │ │ ├── SensorValue.type │ │ ├── SubTestFb.functionblock │ │ ├── Temperature.fbmodel │ │ ├── TestFb.functionblock │ │ └── Voltage.fbmodel ├── generator-eclipsehono │ ├── Readme.md │ ├── hono-arduino │ │ ├── Readme.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── vorto │ │ │ │ └── codegen │ │ │ │ └── hono │ │ │ │ └── arduino │ │ │ │ ├── ArduinoCodeGenerator.xtend │ │ │ │ ├── ArduinoEntityHeaderTemplate.xtend │ │ │ │ ├── ArduinoEntitySoureTemplate.xtend │ │ │ │ ├── ArduinoEnumHeaderTemplate.xtend │ │ │ │ ├── ArduinoFbHeaderTemplate.xtend │ │ │ │ ├── ArduinoFbSourceTemplate.xtend │ │ │ │ ├── ArduinoImHeaderTemplate.xtend │ │ │ │ ├── ArduinoImSourceTemplate.xtend │ │ │ │ ├── ArduinoSketchTemplate.xtend │ │ │ │ └── ArduinoTemplate.xtend │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── vorto │ │ │ │ └── codegen │ │ │ │ └── hono │ │ │ │ └── arduino │ │ │ │ └── EclipseHonoArduinoGeneratorTest.java │ │ │ └── resources │ │ │ └── defaultFileFormat │ │ │ ├── ConfigPropertiesFunctionBlock.cpp │ │ │ ├── MySensor.cpp │ │ │ ├── MySensorApp.ino │ │ │ ├── StatusPropertiesFunctionBlock.cpp │ │ │ ├── UnitEntity.cpp │ │ │ └── eventsAndOperationsFunctionBlock.cpp │ ├── hono-java │ │ ├── Readme.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── vorto │ │ │ │ └── codegen │ │ │ │ └── hono │ │ │ │ └── java │ │ │ │ ├── AppTemplate.xtend │ │ │ │ ├── EclipseHonoJavaGenerator.java │ │ │ │ ├── Log4jTemplate.xtend │ │ │ │ ├── PomFileTemplate.xtend │ │ │ │ ├── TypeMapper.java │ │ │ │ ├── Utils.java │ │ │ │ ├── model │ │ │ │ ├── FunctionblockTemplate.xtend │ │ │ │ ├── InformationModelTemplate.xtend │ │ │ │ ├── JavaClassGeneratorTask.java │ │ │ │ └── JavaEnumGeneratorTask.java │ │ │ │ └── service │ │ │ │ ├── IDataServiceTemplate.xtend │ │ │ │ └── hono │ │ │ │ ├── HonoDataService.xtend │ │ │ │ └── HonoMqttClientTemplate.xtend │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── vorto │ │ │ │ └── codegen │ │ │ │ └── hono │ │ │ │ └── java │ │ │ │ ├── AppTemplateTest.xtend │ │ │ │ └── EclipseHonoJavaGeneratorTest.java │ │ │ └── resources │ │ │ └── defaultFileFormat │ │ │ ├── ConfigPropertiesFunctionBlock.java │ │ │ ├── HonoDataService_MQTT.java │ │ │ ├── HonoMqttClient.java │ │ │ ├── MainApp.java │ │ │ ├── StatusPropertiesFunctionBlock.java │ │ │ ├── ValidEntity.java │ │ │ └── ValidEnum.java │ ├── hono-python │ │ ├── Readme.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── vorto │ │ │ │ └── codegen │ │ │ │ └── hono │ │ │ │ └── python │ │ │ │ ├── PythonDittoSerializerTemplate.xtend │ │ │ │ ├── PythonFbTemplate.xtend │ │ │ │ ├── PythonGenerator.xtend │ │ │ │ ├── PythonImTemplate.xtend │ │ │ │ ├── PythonInitTemplate.xtend │ │ │ │ ├── PythonRequirementsTemplate.xtend │ │ │ │ ├── PythonSampleTemplate.xtend │ │ │ │ └── PythonTemplate.xtend │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── vorto │ │ │ │ └── codegen │ │ │ │ └── hono │ │ │ │ └── python │ │ │ │ ├── EclipseHonoPythonGeneratorTest.java │ │ │ │ ├── PythonAppTemplateTest.xtend │ │ │ │ └── PythonDittoSerializerTemplateTest.xtend │ │ │ └── resources │ │ │ └── defaultFileFormat │ │ │ ├── ConfigPropertiesFunctionBlock.py │ │ │ ├── DittoSerializer.py │ │ │ ├── MainApp.py │ │ │ └── StatusPropertiesFunctionBlock.py │ ├── hono │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── vorto │ │ │ │ │ └── codegen │ │ │ │ │ └── hono │ │ │ │ │ └── EclipseHonoGenerator.java │ │ │ └── resources │ │ │ │ └── build.version │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── codegen │ │ │ └── hono │ │ │ └── HonoGeneratorTest.java │ └── pom.xml ├── generator-jsonschema │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── codegen │ │ │ └── jsonschema │ │ │ ├── JSONSchemaGenerator.java │ │ │ ├── Utils.xtend │ │ │ └── templates │ │ │ ├── ConstraintTemplate.xtend │ │ │ ├── EntityTemplate.xtend │ │ │ ├── EnumTemplate.xtend │ │ │ ├── EventTemplate.xtend │ │ │ ├── PrimitiveTypeTemplate.xtend │ │ │ └── PropertiesTemplate.xtend │ │ └── resources │ │ └── build.version ├── generator-lambda │ ├── Readme.md │ ├── generator-lambda-executor │ │ ├── dependency-reduced-pom.xml │ │ ├── pom.xml │ │ ├── serverless.template │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── plugins │ │ │ └── generator │ │ │ └── lambda │ │ │ └── executor │ │ │ └── GeneratorExecutionHandler.java │ ├── generator-lambda-plugininfo │ │ ├── dependency-reduced-pom.xml │ │ ├── pom.xml │ │ ├── serverless.template │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── plugins │ │ │ └── generator │ │ │ └── lambda │ │ │ └── meta │ │ │ └── plugins │ │ │ ├── function │ │ │ └── GeneratorMetaHandler.java │ │ │ └── plugins │ │ │ ├── BoschIoTSuitePluginInfo.java │ │ │ ├── EclipseDittoPluginInfo.java │ │ │ ├── EclipseHonoPluginInfo.java │ │ │ ├── GeneratorPluginInfoFactory.java │ │ │ ├── IPluginMeta.java │ │ │ ├── JsonSchemaPluginInfo.java │ │ │ └── OpenAPIPluginInfo.java │ ├── pom.xml │ └── sam-local.template ├── generator-openapi │ ├── .gitignore │ ├── Readme.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── codegen │ │ │ └── openapi │ │ │ ├── OpenAPIGenerator.java │ │ │ ├── Utils.xtend │ │ │ └── templates │ │ │ └── OpenAPITemplate.xtend │ │ └── resources │ │ └── build.version ├── generator-runner │ ├── Readme.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── generators │ │ │ └── runner │ │ │ ├── CodeGeneratorV1Adapter.java │ │ │ ├── GeneratorConfiguration.java │ │ │ └── GeneratorRunner.java │ │ └── resources │ │ ├── application.yml │ │ ├── generators │ │ ├── azure.properties │ │ ├── bosch.properties │ │ ├── ditto.properties │ │ ├── hono.properties │ │ ├── jsonschema.properties │ │ └── openapi.properties │ │ └── img │ │ ├── icon144x144.png │ │ └── icon32x32.png └── pom.xml ├── google_checks.xml ├── jacoco-coverage └── pom.xml ├── license-header.txt ├── mapping-engine-nodejs ├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── README.md ├── disclaimer_licenses.txt ├── images │ ├── create_mapping_key.png │ ├── custom_function.png │ ├── download_spec.png │ ├── information_model.png │ ├── mapping_editor_test.png │ ├── specify_mapping_key.png │ └── xpath.png ├── package-lock.json ├── package.json └── vortoMappingEngine.js ├── mapping-engine ├── Readme.md ├── demo │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── mycompany │ │ │ └── Main.java │ │ └── resources │ │ └── mappingspec.json ├── docs │ ├── LoadTesting.md │ ├── built_in_converters.md │ ├── create_mapping_spec_button.png │ ├── create_new_model.png │ ├── create_new_model_button.png │ ├── custom_js_function.png │ ├── download_spec_button.png │ ├── lookup_model_reference_button.png │ ├── mapping_editor_test.png │ ├── mapping_syntax.md │ ├── model_editor.png │ ├── output_aws.png │ ├── output_canonical.png │ ├── output_ditto.png │ ├── search_function_block.png │ ├── target_platform_key.png │ ├── vorto_mappings_schema.png │ └── xpath.png ├── mapping-converter-binary │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── mapping │ │ │ └── engine │ │ │ └── converter │ │ │ └── binary │ │ │ ├── Base64.java │ │ │ └── BinaryFunctionFactory.java │ │ └── test │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── vorto │ │ └── mapping │ │ └── engine │ │ └── converter │ │ └── binary │ │ ├── BinaryMappingTest.java │ │ ├── SpecBinaryConverter.java │ │ ├── SpecGattConverter.java │ │ ├── SpecWithBase64Converter.java │ │ ├── SpecWithByteArrayConverter.java │ │ └── SpecWithConditionFunction.java ├── mapping-converter-date │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── mapping │ │ │ └── engine │ │ │ └── converter │ │ │ └── date │ │ │ ├── DateFunctionFactory.java │ │ │ └── DateUtils.java │ │ └── test │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── vorto │ │ └── mapping │ │ └── engine │ │ └── converter │ │ └── date │ │ ├── DateConvertTest.java │ │ └── SpecWithTimestamp.java ├── mapping-converter-javascript │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── mapping │ │ │ └── engine │ │ │ └── converter │ │ │ ├── JavascriptEvalFunction.java │ │ │ ├── JavascriptEvalProvider.java │ │ │ └── JavascriptFunctions.java │ │ └── test │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── vorto │ │ └── mapping │ │ └── engine │ │ └── converter │ │ └── javascript │ │ ├── JsonMappingTest.java │ │ ├── SpecGattConverter.java │ │ ├── SpecWithArrayType.java │ │ ├── SpecWithConfigMapping.java │ │ ├── SpecWithConstraintConfigMapping.java │ │ ├── SpecWithCustomFunction.java │ │ ├── SpecWithMaliciousFunction.java │ │ ├── SpecWithMultipleParams.java │ │ └── SpecWithNestedEntityAndCustomFunction.java ├── mapping-converter-string │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── vorto │ │ └── mapping │ │ └── engine │ │ └── converter │ │ └── string │ │ ├── String2Utils.java │ │ └── StringFunctionFactory.java ├── mapping-converter-types │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── mapping │ │ │ └── engine │ │ │ └── converter │ │ │ └── types │ │ │ ├── ArrayUtils.java │ │ │ ├── ConvertUtils.java │ │ │ └── TypeFunctionFactory.java │ │ └── test │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── vorto │ │ └── mapping │ │ └── engine │ │ └── converter │ │ └── types │ │ ├── ConvertTest.java │ │ └── SpecWithTypeConversion.java ├── mapping-core │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── mapping │ │ │ └── engine │ │ │ ├── DataMapperBuilder.java │ │ │ ├── IDataMapper.java │ │ │ ├── MappingContext.java │ │ │ ├── MappingException.java │ │ │ ├── decoder │ │ │ ├── CSVDeserializer.java │ │ │ ├── IPayloadDeserializer.java │ │ │ └── JSONDeserializer.java │ │ │ ├── functions │ │ │ ├── ClassFunction.java │ │ │ ├── IFunction.java │ │ │ ├── IScriptEvalProvider.java │ │ │ ├── IScriptEvaluator.java │ │ │ └── ScriptClassFunction.java │ │ │ ├── internal │ │ │ ├── DataMapperJxpath.java │ │ │ ├── DynamicBean.java │ │ │ ├── JxPathFactory.java │ │ │ └── functions │ │ │ │ ├── CustomFunctionsLibrary.java │ │ │ │ └── Jxpath.java │ │ │ ├── model │ │ │ ├── binary │ │ │ │ └── BinaryData.java │ │ │ ├── blegatt │ │ │ │ ├── GattCharacteristic.java │ │ │ │ ├── GattDevice.java │ │ │ │ └── GattService.java │ │ │ └── spec │ │ │ │ ├── IMappingSpecification.java │ │ │ │ ├── MappingSpecBuilder.java │ │ │ │ ├── MappingSpecification.java │ │ │ │ ├── MappingSpecificationProblem.java │ │ │ │ └── Reference.java │ │ │ └── twin │ │ │ └── TwinPayloadFactory.java │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ ├── mapping │ │ │ └── engine │ │ │ │ └── model │ │ │ │ └── binary │ │ │ │ └── BinaryDataTest.java │ │ │ └── service │ │ │ └── mapping │ │ │ ├── ConfigurationMappingTest.java │ │ │ ├── DataMapperTest.java │ │ │ ├── DynamicBeanTest.java │ │ │ ├── MappingSpecJsonReaderTest.java │ │ │ └── spec │ │ │ ├── AbstractTestSpec.java │ │ │ ├── SpecWithArrayPayload.java │ │ │ ├── SpecWithConditionFunction.java │ │ │ ├── SpecWithConditionalProperties.java │ │ │ ├── SpecWithConditionedRules.java │ │ │ ├── SpecWithConfiguration.java │ │ │ ├── SpecWithConfiguration2.java │ │ │ ├── SpecWithNestedEntity.java │ │ │ ├── SpecWithNestedEnum.java │ │ │ ├── SpecWithOperationRule.java │ │ │ ├── SpecWithPropertyConditionXpath.java │ │ │ ├── SpecWithSameFunctionblock.java │ │ │ └── SpecWithTwoFunctionblocksWithNestedEntity.java │ │ └── resources │ │ └── mappingspec.json ├── mapping-engine-all │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── mapping │ │ │ └── engine │ │ │ └── MappingEngine.java │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── service │ │ │ └── mapping │ │ │ └── Example.java │ │ └── resources │ │ └── mappingspec.json ├── mapping-load-test │ ├── pom.xml │ └── src │ │ └── test │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── vorto │ │ └── mapping │ │ └── engine │ │ ├── BinaryMappingLoadTest.java │ │ └── JsonMappingLoadTest.java ├── mapping-serializer │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── mapping │ │ │ └── engine │ │ │ └── serializer │ │ │ ├── AbstractSerializer.java │ │ │ ├── EntityMappingSerializer.xtend │ │ │ ├── FunctionblockMappingSerializer.xtend │ │ │ ├── IMappingSerializer.java │ │ │ ├── InformationModelMappingSerializer.xtend │ │ │ ├── MappingIdUtils.xtend │ │ │ └── MappingSpecificationSerializer.java │ │ └── test │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── vorto │ │ └── mapping │ │ └── engine │ │ └── serializer │ │ └── MappingSpecSerializerTest.xtend ├── mapping-targetplatform │ ├── mapping-targetplatform-awsiot │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── vorto │ │ │ │ └── mapping │ │ │ │ └── targetplatform │ │ │ │ └── awsiot │ │ │ │ ├── State.java │ │ │ │ ├── TwinPayloadFactory.java │ │ │ │ └── UpdateRequest.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── mapping │ │ │ └── targetplatform │ │ │ └── awsiot │ │ │ └── TwinPayloadFactoryTest.java │ ├── mapping-targetplatform-ditto │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── vorto │ │ │ │ └── mapping │ │ │ │ └── targetplatform │ │ │ │ └── ditto │ │ │ │ └── TwinPayloadFactory.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── mapping │ │ │ └── targetplatform │ │ │ └── ditto │ │ │ └── TwinPayloadFactoryTest.java │ └── pom.xml └── pom.xml ├── model-conversion ├── pom.xml └── src │ ├── main │ └── java │ │ └── org │ │ └── eclipse │ │ └── vorto │ │ └── model │ │ └── conversion │ │ ├── IModelConverter.java │ │ └── ModelContentToEcoreConverter.java │ └── test │ └── java │ └── org │ └── eclipse │ └── vorto │ └── model │ └── conversion │ └── ModelContentToEcoreConverterTest.java ├── model-refactoring ├── pom.xml └── src │ ├── main │ └── java │ │ └── org │ │ └── eclipse │ │ └── vorto │ │ └── model │ │ └── refactor │ │ ├── ChangeSet.java │ │ ├── IChangeSet.java │ │ └── RefactoringTask.java │ └── test │ ├── java │ └── org │ │ └── eclipse │ │ └── vorto │ │ └── model │ │ └── refactor │ │ └── RefactoringWorkspaceTest.java │ └── resources │ └── dsls │ ├── Brightness.type │ ├── Color.fbmodel │ ├── Connectivity.fbmodel │ ├── ConnectivityStatus.type │ ├── Dimmer.type │ └── Unit.type ├── model-runtime ├── pom.xml └── src │ ├── main │ └── java │ │ └── org │ │ └── eclipse │ │ └── vorto │ │ └── model │ │ └── runtime │ │ ├── EntityPropertyValue.java │ │ ├── EntityValue.java │ │ ├── EnumPropertyValue.java │ │ ├── EnumValue.java │ │ ├── FBEventValue.java │ │ ├── FunctionblockProperty.java │ │ ├── FunctionblockValue.java │ │ ├── IValidatable.java │ │ ├── InfomodelValue.java │ │ ├── ModelValueFactory.java │ │ ├── PropertyValue.java │ │ ├── PropertyValueFactory.java │ │ └── ValidationReport.java │ └── test │ └── java │ └── org │ └── eclipse │ └── vorto │ └── model │ └── runtime │ └── ValidationTest.java ├── model ├── pom.xml └── src │ └── main │ └── java │ └── org │ └── eclipse │ └── vorto │ └── model │ ├── AbstractModel.java │ ├── AbstractProperty.java │ ├── BooleanAttributeProperty.java │ ├── BooleanAttributePropertyType.java │ ├── Constraint.java │ ├── ConstraintType.java │ ├── DefaultMappedElement.java │ ├── DictionaryType.java │ ├── EntityModel.java │ ├── EnumAttributeProperty.java │ ├── EnumAttributePropertyType.java │ ├── EnumLiteral.java │ ├── EnumModel.java │ ├── EnumUtil.java │ ├── FunctionblockModel.java │ ├── IMappedElement.java │ ├── IModel.java │ ├── IPropertyAttribute.java │ ├── IReferenceType.java │ ├── Infomodel.java │ ├── ModelContent.java │ ├── ModelEvent.java │ ├── ModelId.java │ ├── ModelProperty.java │ ├── ModelType.java │ ├── ModelVisibility.java │ ├── Operation.java │ ├── Param.java │ ├── PrimitiveType.java │ ├── ReturnType.java │ └── Stereotype.java ├── models ├── Repository_As_Editor.md ├── com.bosch.bcds-XDK-2.0.0.infomodel │ ├── COPYRIGHT.txt │ ├── image.png │ ├── links.json │ ├── model.informationmodel │ └── model.json ├── com.bosch.iot.suite-Bootstrapping-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.containers-Configuration-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-Configuration-1.1.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-Configuration-1.2.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-Configuration-1.3.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-Container-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.containers-Container-1.1.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.containers-Container-1.2.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.containers-Container-1.3.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.containers-Container-1.4.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.containers-Container-1.5.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.containers-ContainerFactory-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.containers-ContainerFactory-1.1.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.containers-ContainerFactory-1.2.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.containers-ContainerFactory-1.3.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.containers-ContainerManifest-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-ContainerManifest-1.1.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-ContainerManifest-1.2.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-ContainerManifest-1.3.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-ContainerOrchestrator-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.containers-ContainerOrchestrator-1.1.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.containers-ContainerOrchestrator-1.2.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.containers-ContainerOrchestrator-1.3.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.containers-DecryptionConfiguration-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-Device-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-Error-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-LogConfiguration-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-LogDriver-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-LogMode-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-Manifest-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-Manifest-1.1.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-Manifest-1.2.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-Manifest-1.3.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-ManifestState-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-ManifestState-1.1.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-ManifestState-1.2.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-ManifestState-1.3.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-ManifestStatus-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-MountPoint-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-NetworkMode-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-PortMapping-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-PropagationMode-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-Resources-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-RestartPolicy-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-RestartPolicyType-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-State-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-State-1.1.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-Status-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-StopOptions-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-StopOptions-1.1.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-UpdateOptions-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.containers-UpdateOptions-1.1.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.metric-Filter-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.metric-Measurement-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.metric-Metrics-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.metric-OriginatorMeasurements-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services-Bundle-2.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services-BundleFactory-2.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services-BundleSoftwareUpdatable-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services-BundleState-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services-Configuration-2.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services-ConfigurationFactory-2.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.automation-AutomationAdmin-1.1.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.automation-Handler-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.automation-Handler_Type-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.automation-InputBinding-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.automation-InputBinding_Type-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.automation-Instruction-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.automation-ParameterMetadata-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.automation-ParameterMetadata_Type-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.automation-Rule-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.automation-RuleInfo-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.automation-RuleStatus-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.automation-RuleStatus_State-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.automation-Template-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.automation-TemplateInfo-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.bacnet.da.items-BACnetDetector-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.bacnet.da.items-BACnetDeviceInstances-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.bacnet.da.items-BACnetDiscoveredDevice-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.bacnet.da.items-BACnetDiscovery-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.bacnet.da.items-BACnetDiscoveryParameters-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.bacnet.da.items-BACnetEndpointConfigurator-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.bacnet.da.items-BACnetMultiStateDetector-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.bacnet.da.items-BACnetMultiStateSwitch-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.bacnet.da.items-BACnetObject-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.bacnet.da.items-BACnetObjectInstances-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.bacnet.da.items-BACnetSensor-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.bacnet.da.items-BACnetSetpoint-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.bacnet.da.items-BACnetStatusFlags-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.bacnet.da.items-BACnetSwitch-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.bluetooth.le.da.items-Authentication-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.bluetooth.le.da.items-AuthenticationEvent-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.bluetooth.le.da.items-AuthenticationEvent_Type-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.bluetooth.le.da.items-BleDevice-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.bluetooth.le.da.items-BleDevice_BleDeviceState-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.ciss-DataControl-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.ciss-DataControl_Frequency-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.ciss-EventDetectionConfiguration-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.ciss-EventDetectionConfiguration_NotificationInterface-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.ciss-EventDetectionService-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.ciss-I40Service-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.scd-BulkDataTransfer-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.scd-BulkDataTransfer_Status-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.scd-ScdSettings-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.scd-SelfTestResults-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.scd-ShortTermExperiment-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.scd-SteConfiguration-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.scd-SteConfiguration_AccelerometerSensorOdr-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.scd-SteConfiguration_LightSensorOdr-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.scd-SteResults-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.tdl-AlgoThresholds-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.tdl-BulkDataTransfer-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.tdl-BulkDataTransfer_Status-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.tdl-EnvironmentalThresholds-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.tdl-LoggingSummary-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.tdl-SystemConfigurations-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.tdl-TimeSummary-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.tdl-UserpageService-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.cameras.da.items-BasicHTTPActuator-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.cameras.da.items-Configuration-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.cameras.da.items-ImageProvider-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.cameras.da.items-MoveActuator-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.cameras.da.items-PresetsProvider-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.cameras.da.items-ProfilesProvider-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.cameras.da.items-Record-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.cameras.da.items-RecordActuator-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.cameras.da.items-StorageInfo-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.cameras.da.items-VideoProvider-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.cameras.da.items-ZoomActuator-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.da-AdapterInfo-1.0.1.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.da-AdapterInfo-1.0.2.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.da-AdapterOperation-0.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.da-AdapterOperation-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.da-Device-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.da-Device-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.da-DeviceAdmin-1.1.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.da-DeviceAdmin-1.1.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.da-DeviceDescriptor-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.da-DeviceError-1.0.1.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.da-DeviceItemDescriptor-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.da-DeviceStatus-0.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.da-DeviceStatus-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.da-RemoveArgument-0.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.da-RemoveArgument-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items-Actuator-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items-Detector-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items-KeyInput-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items-KeyInput-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items-KeyInputAction-0.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items-KeyInputAction-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items-KeyInputEvent-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items-KeyInputEvent-1.0.1.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items-Opener-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items-Opener-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items-OpenerState-0.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items-OpenerState-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items-Range-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items-Sensor-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items-Setpoint-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items-Switch-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items-TransitionActuator-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items-TransitionActuator-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items.maintenance-Discovery-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items.maintenance-FactoryReset-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items.maintenance-FirmwareUpdate-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items.maintenance-FirmwareUpdate-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items.maintenance-FirmwareUpdateState-0.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items.maintenance-FirmwareUpdateState-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items.maintenance-FirmwareUpdateStatus-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items.maintenance-FirmwareUpdateStatus-1.0.1.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items.maintenance-PowerSave-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items.whitegoods-Appliance-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items.whitegoods-Appliance-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items.whitegoods-ApplianceState-0.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items.whitegoods-ApplianceState-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items.whitegoods-Program-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.da.items.whitegoods-ProgramSelector-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.dect.da.items-DectDiscovery-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.fim-FunctionalItem-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.fim-FunctionalItemFactory-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.fim-Number-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.fim.backup-BackupAdmin-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.fim.data-FunctionalItemObject-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.fim.groups-Group-1.1.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.fim.groups-GroupAdmin-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.history-HistoryAdmin-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.history-HistoryEntry-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.history-HistoryQuery-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.history-HistoryQuery_Order-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.history.config-HistoryConfiguration-1.1.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.history.config-HistoryConfigurationAdmin-1.1.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.homeconnect.da.items-BeanAmount-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.homeconnect.da.items-BeanAmountControl-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.homeconnect.da.items-CleaningMode-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.homeconnect.da.items-CleaningModeControl-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.homeconnect.da.items-CoffeeTemperature-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.homeconnect.da.items-CoffeeTemperatureControl-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.homeconnect.da.items-DryingTarget-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.homeconnect.da.items-DryingTargetControl-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.homeconnect.da.items-HCAuthorization-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.homeconnect.da.items-HCAuthorizationStatus-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.homeconnect.da.items-HCAuthorizationStatus_State-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.homeconnect.da.items-HCEvent-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.homeconnect.da.items-HCEventInfo-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.homeconnect.da.items-HCEventPresentState-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.homeconnect.da.items-MapControl-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.knx.da.items-DatapointConfig-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.knx.da.items-Date-1.0.1.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.knx.da.items-DateTimeFlags-1.0.1.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.knx.da.items-KnxBlinds-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.knx.da.items-KnxDateControl-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.knx.da.items-KnxDateTimeControl-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.knx.da.items-KnxTimeControl-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.knx.da.items-Time-1.0.1.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.onvif.da.items-DeviceService-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.onvif.da.items-OnvifDiscovery-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.onvif.da.items-OnvifDiscoveryDevice-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.onvif.da.items-SecureConnection-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.onvif.da.items.media-MediaService-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.onvif.da.items.ptz-PanTilt-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.onvif.da.items.ptz-PtzPreset-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.onvif.da.items.ptz-PtzService-2.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.onvif.da.items.ptz-PtzStatus-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.onvif.da.items.ptz-PtzStatus_MoveStatus-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.onvif.da.items.ptz-Zoom-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.things.agent.items.osgi.bundle-Bundle-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.things.agent.items.osgi.bundle-BundleFactory-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.things.agent.items.osgi.bundle-BundleItem_State-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.things.agent.items.osgi.cm-Configuration-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.things.agent.items.osgi.cm-ConfigurationFactory-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.things.agent.items.osgi.framework-FrameworkManagement-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.units-Quantity-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.units-Unit-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items-Diagnostics-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items-Diagnostics_Attribute-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items-FanControl-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items-FanControl_Mode-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items-FanControl_ModeSequence-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items-IASWarning-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items-IASWarning_Level-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items-IASWarning_SquawkMode-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items-IASWarning_WarningMode-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items-IASZoneConfiguration-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items-Identifier-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items-Neighbor-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items-Neighbor_ReceiverState-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items-Neighbor_Relationship-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items-OnOffSwitchConfiguration-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items-OnOffSwitchConfiguration_Action-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items-OnOffSwitchConfiguration_Type-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items-Reporting-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items-ReportingConfiguration-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items-ReportingStatus-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items-RouterNeighborTable-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items-ThermostatUIConfiguration-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items-ThermostatUIConfiguration_DisplayMode-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items-ThermostatUIConfiguration_KeypadLockout-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items-TimeControl-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items-ZigBeeAlarm-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items-ZigBeeAlarms-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items-ZigBeeController-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items-ZigBeeDiscovery-1.0.2.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items-ZigBeeFirmwareUpdate-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items-ZigBeePowerSave-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items.ha-Door-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items.ha-Door_State-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items.ha-Lock-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items.ha-Lock_State-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items.ha-Thermostat-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items.ha-Thermostat_ControlMode-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items.ha-Thermostat_RunningMode-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items.ha-Thermostat_RunningStateBit-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items.ha-Thermostat_SystemMode-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items.ll-ColorMode-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zigbee.da.items.ll-ColorMode_Mode-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-Alarm-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-AlarmV2-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-Association-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-Basic-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-BasicV2-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-ClimateControlSchedule-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-Clock-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-ColorSwitch-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-ColorSwitch_Component-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-ColorSwitch_Direction-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-Configuration-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-Configuration_ParameterLength-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-DoorLock-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-DoorLockLogging-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-DoorLock_Handle-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-MeterReset-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-MultiChannelAssociation-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-NodeProvisioning-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-Notification-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-PowerLevel-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-PowerLevel_Level-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-Protection-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-ProtectionV2-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-ProtectionV2ExclusiveControl-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-ProtectionV2Timeout-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-Protection_State-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-SecurityClass-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-SoundSwitch-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-SoundSwitchV2-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-ThermostatFanMode-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-ThermostatFanState-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-ThermostatMode-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-ThermostatMode_Mode-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-ThermostatSetback-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-ThermostatState-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-UserCode-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-WakeUp-1.0.1.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-Weekday-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-ZWaveNetworkController-1.1.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-ZWaveNetworkController_Bandwidth-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-ZWaveNetworkController_CenterFrequency-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items-ZWaveNetworkController_Role-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data-AlarmStatus-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data-AlarmV2Status-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data-BasicV2Value-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data-ClockTime-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data-ColorValue-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data-DateTime-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data-DoorLockConfiguration-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data-DoorLockLogRecord-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data-DoorLockState-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data-IdToValueTuple-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data-NotificationStatus-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data-OverrideState-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data-PowerLevelTestResult-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data-PowerLevelValue-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data-ProtectionV2State-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data-SoundSwitchToneInfo-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data-SoundSwitchToneVolume-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data-SwitchPoint-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data-Time-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data-User-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data-UserStatus-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data-WakeUpIntervalCapabilities-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data.provisioning-AdvancedJoining-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data.provisioning-BootstrappingMode-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data.provisioning-InformationType-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data.provisioning-Location-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data.provisioning-MaxInclusionRequestInterval-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data.provisioning-Name-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data.provisioning-NetworkStatus-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data.provisioning-NodeEntry-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data.provisioning-ProductId-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data.provisioning-ProductType-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data.provisioning-QRCompatible-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data.provisioning-SmartStartInclusionSetting-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.services.zwave.da.items.data.provisioning-UUID16-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.update-Action-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.update-ActionStatusType-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.update-Association-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.update-Baseline-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.update-Component-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.update-ComponentWithConfig-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.update-DesiredState-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.update-DesiredStateFeedback-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.update-Domain-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.update-HardwareNode-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.update-Inventory-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.update-InventoryNode-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.update-KeyValuePair-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.update-SoftwareNode-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.update-SoftwareType-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.update-StatusType-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.edge.update-UpdateManager-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.edge.vendor.nxp.frdm_k64f-FreedomK64F-1.0.0.infomodel │ ├── COPYRIGHT.txt │ ├── model.informationmodel │ └── model.json ├── com.bosch.iot.suite.example-Display-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.example-LedLamp-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.example-Switch-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.example-VirtualDemoDevice-1.0.0.infomodel │ ├── COPYRIGHT.txt │ ├── image.png │ ├── links.json │ ├── model.informationmodel │ └── model.json ├── com.bosch.iot.suite.example-VirtualDemoDevice-2.0.0.infomodel │ ├── COPYRIGHT.txt │ ├── image.png │ ├── links.json │ ├── model.informationmodel │ └── model.json ├── com.bosch.iot.suite.example.octopussuiteedition-Accelerometer-1.1.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.example.octopussuiteedition-Altitude-1.1.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.example.octopussuiteedition-Barometer-1.1.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.example.octopussuiteedition-GenericSensor-1.1.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.example.octopussuiteedition-Gyrometer-1.1.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.example.octopussuiteedition-Humidity-1.1.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.example.octopussuiteedition-LED-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.example.octopussuiteedition-Magnetometer-1.1.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.example.octopussuiteedition-MultipleAxisJoystick-1.1.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.example.octopussuiteedition-OctopusSuiteEdition-1.0.0.infomodel │ ├── COPYRIGHT.txt │ ├── image.jpg │ ├── links.json │ ├── model.informationmodel │ └── model.json ├── com.bosch.iot.suite.example.octopussuiteedition-OctopusSuiteEdition-1.1.0.infomodel │ ├── COPYRIGHT.txt │ ├── image.png │ ├── links.json │ ├── model.informationmodel │ └── model.json ├── com.bosch.iot.suite.example.octopussuiteedition-Temperature-1.1.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.example.octopussuiteedition-Voltage-1.1.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.examples.geolocation-Geolocation-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.examples.geolocation-Geoposition-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.manager.backup-BackupAndRestore-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.manager.backup-BackupAndRestoreStatus-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.manager.backup-State-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.manager.upload-AutoUploadable-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.manager.upload-AutoUploadableState-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.manager.upload-State-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.manager.upload-UploadStatus-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── com.bosch.iot.suite.manager.upload-Uploadable-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── com.bosch.iot.suite.std-Directory-1.0.0.infomodel │ ├── COPYRIGHT.txt │ ├── model.informationmodel │ └── model.json ├── com.bosch.iot.suite.std-Filter-1.0.0.infomodel │ ├── COPYRIGHT.txt │ ├── model.informationmodel │ └── model.json ├── com.bosch.iot.suite.std-Tag-1.0.0.infomodel │ ├── COPYRIGHT.txt │ ├── model.informationmodel │ └── model.json ├── org.eclipse.ditto-ConnectionStatus-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── org.eclipse.ditto.examples-Color-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.ditto.examples-Colorable-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── org.eclipse.ditto.examples-ColorableLamp-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── org.eclipse.ditto.examples-Dimmable-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── org.eclipse.ditto.examples-DimmableLamp-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── org.eclipse.ditto.examples-Duration-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.ditto.examples-MightyLamp-1.0.0.infomodel │ ├── COPYRIGHT.txt │ ├── model.informationmodel │ └── model.json ├── org.eclipse.ditto.examples-MightyLamp-2.0.0.infomodel │ ├── COPYRIGHT.txt │ ├── model.informationmodel │ └── model.json ├── org.eclipse.ditto.examples-Priority-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.ditto.examples-SmokeDetector-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── org.eclipse.ditto.examples-Switchable-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── org.eclipse.ditto.examples-SwitchableLamp-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── org.eclipse.ditto.examples-TimeUnit-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.ditto.examples.arduino-Direction-1.0.0.type │ ├── COPYRIGHT.txt │ └── model.datatype ├── org.eclipse.ditto.examples.arduino-LED-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ └── model.functionblock ├── org.eclipse.ditto.examples.arduino.carrier-Buzzer-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ └── model.functionblock ├── org.eclipse.ditto.examples.arduino.carrier-ColoredDisplay-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ └── model.functionblock ├── org.eclipse.ditto.examples.arduino.carrier-Gesture-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ └── model.functionblock ├── org.eclipse.ditto.examples.arduino.carrier-LEDs-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ └── model.functionblock ├── org.eclipse.ditto.examples.arduino.carrier-Light-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ └── model.functionblock ├── org.eclipse.ditto.examples.arduino.connectivity-WiFi-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ └── model.functionblock ├── org.eclipse.ditto.examples.arduino.connectivity.wifi-EncryptionProtocol-1.0.0.type │ ├── COPYRIGHT.txt │ └── model.datatype ├── org.eclipse.ditto.examples.arduino.mkr-ArduinoMKR1000WiFi-1.0.0.infomodel │ ├── COPYRIGHT.txt │ ├── image.png │ ├── links.json │ └── model.informationmodel ├── org.eclipse.ditto.examples.arduino.mkr-ArduinoMKRVidor4000-1.0.0.infomodel │ ├── COPYRIGHT.txt │ ├── image.png │ ├── links.json │ └── model.informationmodel ├── org.eclipse.ditto.examples.arduino.mkr-ArduinoMKRWiFi1010-1.0.0.infomodel │ ├── COPYRIGHT.txt │ ├── image.png │ ├── links.json │ └── model.informationmodel ├── org.eclipse.hawkbit-ActionProperties-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.hawkbit-ActionType-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.hawkbit-DependencyDescription-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.hawkbit-DependencyDescription-2.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.hawkbit-Hash-2.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.hawkbit-Hashes-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.hawkbit-Links-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.hawkbit-Links-2.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.hawkbit-OperationStatus-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.hawkbit-OperationStatus-2.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.hawkbit-Protocol-2.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.hawkbit-SoftwareArtifactAction-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.hawkbit-SoftwareArtifactAction-2.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.hawkbit-SoftwareDescription-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.hawkbit-SoftwareModuleAction-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.hawkbit-SoftwareModuleAction-2.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.hawkbit-SoftwareModuleId-2.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.hawkbit-SoftwareRemoveAction-2.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.hawkbit-SoftwareUpdateAction-2.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.hawkbit-Status-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.hawkbit-Status-2.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.hawkbit-UpdateAction-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.hawkbit-Url-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.hawkbit.swmodule-SoftwareModule-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── org.eclipse.hawkbit.swupdatable-SoftwareUpdatable-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── org.eclipse.hawkbit.swupdatable-SoftwareUpdatable-2.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── org.eclipse.vorto-Unit-1.0.1.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.vorto.std-Location-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.vorto.std-Location3D-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.vorto.std-Value3D-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.vorto.std.sensor-AccelerationSensor3D-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── org.eclipse.vorto.std.sensor-AcousticsSensor-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── org.eclipse.vorto.std.sensor-DistanceSensor-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── org.eclipse.vorto.std.sensor-HumiditySensor-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── org.eclipse.vorto.std.sensor-IlluminanceSensor-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── org.eclipse.vorto.std.sensor-LocationSensor-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── org.eclipse.vorto.std.sensor-LocationSensor3D-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── org.eclipse.vorto.std.sensor-LuminanceSensor-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── org.eclipse.vorto.std.sensor-MagneticFieldSensor3D-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── org.eclipse.vorto.std.sensor-PresenceSensor-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── org.eclipse.vorto.std.sensor-PressureSensor-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── org.eclipse.vorto.std.sensor-RotationSensor3D-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── org.eclipse.vorto.std.sensor-TemperatureSensor-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── org.eclipse.vorto.std.sensor-VoltageSensor-1.0.0.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json ├── org.eclipse.vorto.std.unit-AccelerationUnit-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.vorto.std.unit-AccelerationUnit-1.0.1.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.vorto.std.unit-AcousticsUnit-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.vorto.std.unit-DimensionlessUnit-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.vorto.std.unit-ElectricPotentialDifferenceUnit-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.vorto.std.unit-IlluminanceUnit-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.vorto.std.unit-LengthUnit-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.vorto.std.unit-LuminanceUnit-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.vorto.std.unit-LuminanceUnit-1.0.1.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.vorto.std.unit-MagneticFluxDensityUnit-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.vorto.std.unit-MagneticFluxDensityUnit-1.0.1.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.vorto.std.unit-PressureUnit-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.vorto.std.unit-RotationalSpeedUnit-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.vorto.std.unit-RotationalSpeedUnit-1.0.1.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.vorto.std.unit-TemperatureUnit-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── org.eclipse.vorto.std.unit-TemperatureUnit-1.0.1.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── vorto.private.bosch.io.hrm.test-BsedMeasurement-1.0.0.type │ ├── COPYRIGHT.txt │ ├── model.datatype │ └── model.json ├── vorto.private.bosch.io.hrm.test-BsedMeterDevice-1.0.4.fbmodel │ ├── COPYRIGHT.txt │ ├── model.functionblock │ └── model.json └── vorto.private.bosch.io.hrm.test-BsedNanoBeemes-1.0.2.infomodel │ ├── COPYRIGHT.txt │ ├── image.png │ ├── model.informationmodel │ └── model.json ├── plugin-sdk ├── Readme.md ├── plugin-api │ ├── Readme.md │ ├── docs │ │ ├── generator-plugin-v2.png │ │ ├── importer-plugin-import.png │ │ └── importer-plugin-validation.png │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── plugin │ │ │ ├── PluginInfo.java │ │ │ ├── generator │ │ │ ├── GeneratorException.java │ │ │ ├── GeneratorPluginInfo.java │ │ │ ├── ICodeGenerator.java │ │ │ ├── IGenerationResult.java │ │ │ ├── InvocationContext.java │ │ │ ├── adapter │ │ │ │ ├── ICodeGeneratorModelAdapter.java │ │ │ │ └── ObjectMapperFactory.java │ │ │ ├── config │ │ │ │ ├── ConfigTemplateBuilder.java │ │ │ │ └── DefaultGeneratorConfigUI.xtend │ │ │ ├── mapping │ │ │ │ ├── DefaultMapped.java │ │ │ │ ├── IMapped.java │ │ │ │ └── NullMapped.java │ │ │ └── utils │ │ │ │ ├── AbstractTemplateGeneratorTask.java │ │ │ │ ├── ChainedCodeGeneratorTask.java │ │ │ │ ├── DatatypeGeneratorTask.java │ │ │ │ ├── FileContent.java │ │ │ │ ├── Generated.java │ │ │ │ ├── GenerationResultBuilder.java │ │ │ │ ├── GenerationResultZip.java │ │ │ │ ├── GeneratorTaskFromFileTemplate.java │ │ │ │ ├── ICodeGeneratorTask.java │ │ │ │ ├── IFileTemplate.java │ │ │ │ ├── IGeneratedWriter.java │ │ │ │ ├── ITemplate.java │ │ │ │ ├── SingleFileContentCodeGeneratorTask.java │ │ │ │ ├── SingleGenerationResult.java │ │ │ │ └── javatemplates │ │ │ │ ├── JavaClassFieldGetterTemplate.xtend │ │ │ │ ├── JavaClassFieldSetterTemplate.xtend │ │ │ │ ├── JavaClassFieldTemplate.xtend │ │ │ │ ├── JavaClassMethodParameterTemplate.xtend │ │ │ │ ├── JavaClassMethodTemplate.xtend │ │ │ │ ├── JavaEntityTemplate.xtend │ │ │ │ ├── JavaEnumTemplate.xtend │ │ │ │ ├── JavaFunctionblockImplTemplate.xtend │ │ │ │ ├── JavaFunctionblockInterfaceTemplate.xtend │ │ │ │ ├── JavaFunctionblockPropertyGetterDeclarationTemplate.xtend │ │ │ │ ├── JavaFunctionblockPropertyGetterTemplate.xtend │ │ │ │ ├── JavaFunctionblockPropertySetterDeclarationTemplate.xtend │ │ │ │ ├── JavaFunctionblockPropertySetterTemplate.xtend │ │ │ │ ├── JavaFunctionblockPropertyTemplate.xtend │ │ │ │ ├── JavaInformationModelInterfaceTemplate.xtend │ │ │ │ ├── JavaInformationModelTemplate.xtend │ │ │ │ └── ValueMapper.java │ │ │ ├── importer │ │ │ ├── ImporterPluginInfo.java │ │ │ └── ValidationReport.java │ │ │ └── utils │ │ │ ├── ApiGatewayRequest.java │ │ │ ├── ApiGatewayResponse.java │ │ │ └── Utils.java │ │ └── test │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── vorto │ │ └── plugin │ │ ├── AbstractGeneratorTest.java │ │ ├── HelloWorldGeneratorTest.java │ │ ├── UtilsTest.java │ │ ├── ValueMapperTest.java │ │ └── generator │ │ └── TestUtils.java ├── plugin-generator │ ├── Readme.md │ ├── docs │ │ ├── generator-plugin-v2.png │ │ ├── generator-plugin.png │ │ ├── repo_generator_generator_download.png │ │ ├── repo_generator_parameters.png │ │ └── repo_plugins.png │ ├── generator-api │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── vorto │ │ │ │ └── codegen │ │ │ │ ├── api │ │ │ │ ├── AbstractTemplateGeneratorTask.java │ │ │ │ ├── ChainedCodeGeneratorTask.java │ │ │ │ ├── CopyResourceTask.java │ │ │ │ ├── DatatypeGeneratorTask.java │ │ │ │ ├── EclipseProjectParserHandler.java │ │ │ │ ├── FileContent.java │ │ │ │ ├── Generated.java │ │ │ │ ├── GenerationResultZip.java │ │ │ │ ├── GeneratorInfo.java │ │ │ │ ├── GeneratorServiceInfo.java │ │ │ │ ├── GeneratorTaskFromFileTemplate.java │ │ │ │ ├── ICodeGeneratorTask.java │ │ │ │ ├── IFileTemplate.java │ │ │ │ ├── IGeneratedWriter.java │ │ │ │ ├── IGenerationResult.java │ │ │ │ ├── IGeneratorLookup.java │ │ │ │ ├── ITemplate.java │ │ │ │ ├── IVortoCodeGenInfrastructureProgressMonitor.java │ │ │ │ ├── IVortoCodeGenProgressMonitor.java │ │ │ │ ├── IVortoCodeGenerator.java │ │ │ │ ├── IVortoCodeGeneratorAdapter.java │ │ │ │ ├── InvocationContext.java │ │ │ │ ├── ServiceClassifier.java │ │ │ │ ├── SingleFileContentCodeGeneratorTask.java │ │ │ │ ├── SingleGenerationResult.java │ │ │ │ ├── VortoCodeGeneratorException.java │ │ │ │ ├── ZipContentExtractCodeGeneratorTask.java │ │ │ │ └── mapping │ │ │ │ │ ├── DefaultMapped.java │ │ │ │ │ ├── IMapped.java │ │ │ │ │ └── NullMapped.java │ │ │ │ ├── testutils │ │ │ │ ├── GeneratorTest.java │ │ │ │ ├── GeneratorTestException.java │ │ │ │ ├── ZipDiff.java │ │ │ │ └── ZipDiffException.java │ │ │ │ └── utils │ │ │ │ ├── ApiGatewayResponse.java │ │ │ │ ├── GenerationResultBuilder.java │ │ │ │ ├── ObjectMapperFactory.java │ │ │ │ └── Utils.java │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── vorto │ │ │ │ └── codegen │ │ │ │ ├── AbstractGeneratorTest.java │ │ │ │ ├── testutils │ │ │ │ └── TestZipDiff.java │ │ │ │ └── utils │ │ │ │ └── UtilsTest.java │ │ │ └── resources │ │ │ ├── SomeFb.fbmodel │ │ │ ├── SuperFb.fbmodel │ │ │ ├── SuperSuperFb.fbmodel │ │ │ ├── com.ipso.smartobjects_Push_button_0_0_1.fbmodel │ │ │ ├── diagnosis-changed.zip │ │ │ ├── diagnosis-same.zip │ │ │ ├── diagnosis-with-extra.zip │ │ │ ├── diagnosis-with-zip-inside-changed.zip │ │ │ ├── diagnosis-with-zip-inside.zip │ │ │ ├── diagnosis-with-zip-inside2.zip │ │ │ └── diagnosis.zip │ ├── generator-runner-spi │ │ ├── Readme.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── codegen │ │ │ └── spi │ │ │ ├── config │ │ │ ├── AbstractGeneratorConfiguration.java │ │ │ ├── IGeneratorConfiguration.java │ │ │ └── SerializationConfiguration.java │ │ │ ├── controllers │ │ │ ├── GeneratorControllerV2.java │ │ │ └── Generators.java │ │ │ ├── exception │ │ │ ├── GeneratorCreationException.java │ │ │ └── NotFoundException.java │ │ │ ├── model │ │ │ └── Generator.java │ │ │ ├── repository │ │ │ └── GeneratorRepository.java │ │ │ ├── service │ │ │ ├── ServerGeneratorLookup.java │ │ │ └── VortoService.java │ │ │ ├── templates │ │ │ ├── DefaultGeneratorConfigUI.xtend │ │ │ └── IGeneratorConfigUITemplate.java │ │ │ └── utils │ │ │ └── GatewayUtils.java │ ├── generator-template │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── codegen │ │ │ └── template │ │ │ ├── CodeGeneratorTemplateGenerator.java │ │ │ ├── parent │ │ │ └── PomTemplate.xtend │ │ │ ├── plugin │ │ │ ├── GeneratorMainTemplate.xtend │ │ │ ├── HelloWorldTemplate.xtend │ │ │ └── PomTemplate.xtend │ │ │ └── runner │ │ │ ├── DockerComposeTemplate.xtend │ │ │ ├── DockerRunGeneratorsShTemplate.xtend │ │ │ ├── DockerWaitForItShTemplate.xtend │ │ │ ├── DockerfileTemplate.xtend │ │ │ ├── GenPropertiesFileTemplate.xtend │ │ │ ├── GeneratorConfigurationTemplate.xtend │ │ │ ├── GeneratorRunnerTemplate.xtend │ │ │ ├── LocalPropertiesFileTemplate.xtend │ │ │ ├── PomTemplate.xtend │ │ │ └── RepositoryConfigTemplate.xtend │ ├── generator-templates-java │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── codegen │ │ │ └── templates │ │ │ └── java │ │ │ ├── JavaClassFieldGetterTemplate.xtend │ │ │ ├── JavaClassFieldSetterTemplate.xtend │ │ │ ├── JavaClassFieldTemplate.xtend │ │ │ ├── JavaClassMethodParameterTemplate.xtend │ │ │ ├── JavaClassMethodTemplate.xtend │ │ │ ├── JavaEntityTemplate.xtend │ │ │ ├── JavaEnumTemplate.xtend │ │ │ ├── JavaFunctionblockImplTemplate.xtend │ │ │ ├── JavaFunctionblockInterfaceTemplate.xtend │ │ │ ├── JavaFunctionblockPropertyGetterDeclarationTemplate.xtend │ │ │ ├── JavaFunctionblockPropertyGetterTemplate.xtend │ │ │ ├── JavaFunctionblockPropertySetterDeclarationTemplate.xtend │ │ │ ├── JavaFunctionblockPropertySetterTemplate.xtend │ │ │ ├── JavaFunctionblockPropertyTemplate.xtend │ │ │ ├── JavaInformationModelInterfaceTemplate.xtend │ │ │ ├── JavaInformationModelTemplate.xtend │ │ │ └── utils │ │ │ ├── ModelHelper.java │ │ │ └── ValueMapper.java │ └── pom.xml └── pom.xml ├── pom.xml ├── repository ├── Readme.md ├── docs │ ├── create_model.md │ ├── images │ │ ├── create_model_dialog.png │ │ ├── migrate_model │ │ │ ├── download_image.png │ │ │ ├── download_model.png │ │ │ ├── successful_upload.png │ │ │ └── upload_image.png │ │ ├── model_states.png │ │ └── model_version_dialog.png │ ├── import_model.md │ ├── model_states.md │ └── model_versioning.md ├── migration │ ├── migrate_db_0xx_to_013_H2.sql │ ├── migrate_db_0xx_to_013_MariaDB.sql │ ├── migrate_db_2018_11_09.sql │ ├── migrate_db_createdby.sql │ ├── migrate_db_from_013_MariaDB_debug.sql │ ├── migrate_db_from_013_MariaDB_preparation.sql │ └── migration_0.11.md ├── monitoring │ ├── urls.lst │ └── webmonitor.sh ├── pom.xml ├── repository-api │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── vorto │ │ └── repository │ │ └── api │ │ ├── AbstractModel.java │ │ ├── IModel.java │ │ ├── IModelGeneration.java │ │ ├── IModelRepository.java │ │ ├── ModelContent.java │ │ ├── ModelId.java │ │ ├── ModelInfo.java │ │ ├── ModelQuery.java │ │ ├── ModelQueryBuilder.java │ │ ├── ModelType.java │ │ ├── attachment │ │ ├── Attachment.java │ │ └── Tag.java │ │ ├── content │ │ ├── AbstractProperty.java │ │ ├── BooleanAttributeProperty.java │ │ ├── BooleanAttributePropertyType.java │ │ ├── Constraint.java │ │ ├── ConstraintType.java │ │ ├── DefaultMappedElement.java │ │ ├── EntityModel.java │ │ ├── EnumAttributeProperty.java │ │ ├── EnumAttributePropertyType.java │ │ ├── EnumLiteral.java │ │ ├── EnumModel.java │ │ ├── FunctionblockModel.java │ │ ├── IMappedElement.java │ │ ├── IPropertyAttribute.java │ │ ├── IReferenceType.java │ │ ├── Infomodel.java │ │ ├── ModelEvent.java │ │ ├── ModelProperty.java │ │ ├── Operation.java │ │ ├── Param.java │ │ ├── PrimitiveType.java │ │ ├── ReturnType.java │ │ └── Stereotype.java │ │ ├── exception │ │ ├── GenerationException.java │ │ ├── GeneratorNotFoundException.java │ │ ├── ModelNotFoundException.java │ │ └── ModelQueryException.java │ │ ├── generation │ │ ├── GeneratedOutput.java │ │ └── GeneratorInfo.java │ │ └── mapping │ │ ├── IMapping.java │ │ └── IMappingQuery.java ├── repository-core │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── vorto │ │ │ │ └── repository │ │ │ │ ├── account │ │ │ │ └── impl │ │ │ │ │ ├── AccountDeletionNotAllowed.java │ │ │ │ │ ├── DefaultUserAccountService.java │ │ │ │ │ ├── RoleNotSupportedException.java │ │ │ │ │ └── UserAccountListener.java │ │ │ │ ├── actuator │ │ │ │ └── GeneratorsHealthCheck.java │ │ │ │ ├── backup │ │ │ │ ├── IBackupRestoreService.java │ │ │ │ └── impl │ │ │ │ │ └── BackupRestoreService.java │ │ │ │ ├── comment │ │ │ │ ├── ICommentService.java │ │ │ │ └── impl │ │ │ │ │ ├── CommentAnonymizationListener.java │ │ │ │ │ ├── CommentRepository.java │ │ │ │ │ └── DefaultCommentService.java │ │ │ │ ├── conversion │ │ │ │ ├── ModelIdToModelContentConverter.java │ │ │ │ └── ModelInfoRetrieverTask.java │ │ │ │ ├── core │ │ │ │ ├── Attachment.java │ │ │ │ ├── AttachmentException.java │ │ │ │ ├── Diagnostic.java │ │ │ │ ├── FatalModelRepositoryException.java │ │ │ │ ├── FileContent.java │ │ │ │ ├── IDiagnostics.java │ │ │ │ ├── IModelIdResolver.java │ │ │ │ ├── IModelPolicyManager.java │ │ │ │ ├── IModelRepository.java │ │ │ │ ├── IModelRepositoryFactory.java │ │ │ │ ├── IModelRetrievalService.java │ │ │ │ ├── IModeshapeDoctor.java │ │ │ │ ├── IRepositoryManager.java │ │ │ │ ├── IUserContext.java │ │ │ │ ├── ModelAlreadyExistsException.java │ │ │ │ ├── ModelFileContent.java │ │ │ │ ├── ModelInfo.java │ │ │ │ ├── ModelNotFoundException.java │ │ │ │ ├── ModelReferentialIntegrityException.java │ │ │ │ ├── ModelRepositoryException.java │ │ │ │ ├── ModelResource.java │ │ │ │ ├── PolicyEntry.java │ │ │ │ ├── Tag.java │ │ │ │ ├── UserLoginException.java │ │ │ │ ├── WorkspaceNotFoundException.java │ │ │ │ ├── events │ │ │ │ │ ├── AppEvent.java │ │ │ │ │ └── EventType.java │ │ │ │ ├── impl │ │ │ │ │ ├── AbstractRepositoryOperation.java │ │ │ │ │ ├── Diagnostician.java │ │ │ │ │ ├── ITemporaryStorage.java │ │ │ │ │ ├── InMemoryTemporaryStorage.java │ │ │ │ │ ├── InvocationContext.java │ │ │ │ │ ├── ModelPolicyManager.java │ │ │ │ │ ├── ModelRepository.java │ │ │ │ │ ├── ModelRepositoryEventListener.java │ │ │ │ │ ├── ModelRepositoryFactory.java │ │ │ │ │ ├── ModelRetrievalService.java │ │ │ │ │ ├── ModelSequencer.java │ │ │ │ │ ├── ModelSequencerOld.java │ │ │ │ │ ├── PrivilegedUserContextProvider.java │ │ │ │ │ ├── RepositoryDiagnostics.java │ │ │ │ │ ├── RepositoryManager.java │ │ │ │ │ ├── RequestRepositorySessionHelper.java │ │ │ │ │ ├── StorageItem.java │ │ │ │ │ ├── UserContext.java │ │ │ │ │ ├── ValidationReportFactory.java │ │ │ │ │ ├── cache │ │ │ │ │ │ ├── IUserRequestCache.java │ │ │ │ │ │ ├── NamespaceRequestCache.java │ │ │ │ │ │ ├── NullUserRequestCache.java │ │ │ │ │ │ ├── UserRequestCache.java │ │ │ │ │ │ └── UserRolesRequestCache.java │ │ │ │ │ ├── diagnostics │ │ │ │ │ │ ├── MetadataIntegrityDiagnostic.java │ │ │ │ │ │ ├── ModelValidationDiagnostic.java │ │ │ │ │ │ ├── NodeDiagnosticException.java │ │ │ │ │ │ ├── NodeDiagnosticUtils.java │ │ │ │ │ │ └── ReferenceIntegrityDiagnostic.java │ │ │ │ │ ├── parser │ │ │ │ │ │ ├── AbstractModelParser.java │ │ │ │ │ │ ├── DatatypeModelParser.java │ │ │ │ │ │ ├── ErrorMessageProvider.java │ │ │ │ │ │ ├── FunctionblockModelParser.java │ │ │ │ │ │ ├── IModelParser.java │ │ │ │ │ │ ├── InformationModelParser.java │ │ │ │ │ │ ├── LocalModelWorkspace.java │ │ │ │ │ │ ├── MappingModelParser.java │ │ │ │ │ │ ├── ModelParserFactory.java │ │ │ │ │ │ ├── ParsingException.java │ │ │ │ │ │ ├── SupportedVortolangVersions.java │ │ │ │ │ │ └── ValidationIssue.java │ │ │ │ │ ├── resolver │ │ │ │ │ │ ├── AbstractResolver.java │ │ │ │ │ │ ├── DefaultResolver.java │ │ │ │ │ │ └── UnknownModelIdResolverException.java │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── BulkUploadHelper.java │ │ │ │ │ │ ├── DependencyManager.java │ │ │ │ │ │ ├── ModelIdHelper.java │ │ │ │ │ │ ├── ModelReferencesHelper.java │ │ │ │ │ │ ├── ModelSearchUtil.java │ │ │ │ │ │ └── ModelValidationHelper.java │ │ │ │ │ └── validation │ │ │ │ │ │ ├── AttachmentValidator.java │ │ │ │ │ │ ├── BulkModelDuplicateIdValidation.java │ │ │ │ │ │ ├── BulkModelReferencesValidation.java │ │ │ │ │ │ ├── CouldNotResolveReferenceException.java │ │ │ │ │ │ ├── DuplicateModelValidation.java │ │ │ │ │ │ ├── IModelValidator.java │ │ │ │ │ │ ├── ModelReferencesValidation.java │ │ │ │ │ │ ├── TypeImportValidation.java │ │ │ │ │ │ ├── UserHasAccessToNamespaceValidation.java │ │ │ │ │ │ └── ValidationException.java │ │ │ │ └── security │ │ │ │ │ ├── SpringSecurityContext.java │ │ │ │ │ ├── SpringSecurityCredentials.java │ │ │ │ │ └── SpringSecurityProvider.java │ │ │ │ ├── diagnostics │ │ │ │ ├── ModeshapeAclEntry.java │ │ │ │ ├── ModeshapeContentData.java │ │ │ │ ├── ModeshapeDoctor.java │ │ │ │ ├── ModeshapeNodeData.java │ │ │ │ └── ModeshapeProperty.java │ │ │ │ ├── domain │ │ │ │ ├── Comment.java │ │ │ │ ├── IRole.java │ │ │ │ ├── IllegalNamespacePartials.java │ │ │ │ ├── Namespace.java │ │ │ │ ├── NamespaceRole.java │ │ │ │ ├── Privilege.java │ │ │ │ ├── RepositoryRole.java │ │ │ │ ├── User.java │ │ │ │ ├── UserNamespaceID.java │ │ │ │ ├── UserNamespaceRoles.java │ │ │ │ └── UserRepositoryRoles.java │ │ │ │ ├── importer │ │ │ │ ├── AbstractModelImporter.java │ │ │ │ ├── Context.java │ │ │ │ ├── FileUpload.java │ │ │ │ ├── IModelImportService.java │ │ │ │ ├── IModelImporter.java │ │ │ │ ├── MessageSeverity.java │ │ │ │ ├── ModelImporterException.java │ │ │ │ ├── StatusMessage.java │ │ │ │ ├── UploadModelResult.java │ │ │ │ ├── ValidationReport.java │ │ │ │ └── impl │ │ │ │ │ ├── DefaultModelImportService.java │ │ │ │ │ └── VortoModelImporter.java │ │ │ │ ├── init │ │ │ │ ├── DBTablesInitializer.java │ │ │ │ └── RepositoryInitializer.java │ │ │ │ ├── mapping │ │ │ │ ├── IPayloadMappingService.java │ │ │ │ └── impl │ │ │ │ │ └── DefaultPayloadMappingService.java │ │ │ │ ├── model │ │ │ │ ├── IBulkOperationsService.java │ │ │ │ ├── ModelNamespaceNotOfficialException.java │ │ │ │ ├── ModelNotReleasedException.java │ │ │ │ ├── RepositoryAccessException.java │ │ │ │ └── impl │ │ │ │ │ └── DefaultBulkOperationsService.java │ │ │ │ ├── notification │ │ │ │ ├── IMessage.java │ │ │ │ ├── INotificationService.java │ │ │ │ ├── impl │ │ │ │ │ └── EmailNotificationService.java │ │ │ │ └── message │ │ │ │ │ ├── AbstractMessage.java │ │ │ │ │ ├── AddedToNamespaceMessage.java │ │ │ │ │ ├── CommentReplyMessage.java │ │ │ │ │ ├── DeleteAccountMessage.java │ │ │ │ │ ├── OfficialNamespaceRequest.java │ │ │ │ │ ├── RemovedFromNamespaceMessage.java │ │ │ │ │ ├── RequestAccessToNamespaceMessage.java │ │ │ │ │ ├── RolesChangedInNamespaceMessage.java │ │ │ │ │ ├── TemplateRenderer.java │ │ │ │ │ └── WorkItemPendingMessage.java │ │ │ │ ├── oauth │ │ │ │ ├── AbstractOAuthProvider.java │ │ │ │ ├── AbstractOAuthProviderConfiguration.java │ │ │ │ ├── AnonymousOAuthProvider.java │ │ │ │ ├── IOAuthFlowConfiguration.java │ │ │ │ ├── IOAuthProvider.java │ │ │ │ ├── IOAuthProviderRegistry.java │ │ │ │ ├── OAuthUser.java │ │ │ │ └── internal │ │ │ │ │ ├── BearerTokenFilterUtils.java │ │ │ │ │ ├── CustomStateKeyGenerator.java │ │ │ │ │ ├── DefaultOAuthProviderRegistry.java │ │ │ │ │ ├── JwtToken.java │ │ │ │ │ ├── Key.java │ │ │ │ │ ├── Keys.java │ │ │ │ │ ├── MalformedElement.java │ │ │ │ │ ├── PublicKeyHelper.java │ │ │ │ │ ├── Resource.java │ │ │ │ │ ├── SpringUserUtils.java │ │ │ │ │ ├── TokenUtils.java │ │ │ │ │ ├── VerificationHelper.java │ │ │ │ │ └── filter │ │ │ │ │ └── BearerTokenFilter.java │ │ │ │ ├── plugin │ │ │ │ ├── FileContentResource.java │ │ │ │ ├── generator │ │ │ │ │ ├── GeneratedOutput.java │ │ │ │ │ ├── GenerationException.java │ │ │ │ │ ├── GeneratorAlreadyExistsException.java │ │ │ │ │ ├── GeneratorNotFoundException.java │ │ │ │ │ ├── GeneratorPluginConfiguration.java │ │ │ │ │ ├── IGeneratorPluginService.java │ │ │ │ │ └── impl │ │ │ │ │ │ ├── DefaultGeneratorConfigUI.xtend │ │ │ │ │ │ ├── DefaultGeneratorPluginService.java │ │ │ │ │ │ ├── GeneratedOutputAttachmentHandler.java │ │ │ │ │ │ ├── GeneratorMetric.java │ │ │ │ │ │ ├── GeneratorPluginInfoV1.java │ │ │ │ │ │ ├── IGeneratorLookup.java │ │ │ │ │ │ └── IGeneratorMetrics.java │ │ │ │ └── importer │ │ │ │ │ └── RemoteImporter.java │ │ │ │ ├── repositories │ │ │ │ ├── NamespaceRepository.java │ │ │ │ ├── NamespaceRoleRepository.java │ │ │ │ ├── PrivilegeRepository.java │ │ │ │ ├── RepositoryRoleRepository.java │ │ │ │ ├── UserNamespaceRoleRepository.java │ │ │ │ ├── UserRepository.java │ │ │ │ └── UserRepositoryRoleRepository.java │ │ │ │ ├── search │ │ │ │ ├── IIndexingService.java │ │ │ │ ├── ISearchService.java │ │ │ │ ├── IndexingEventListener.java │ │ │ │ ├── IndexingException.java │ │ │ │ ├── IndexingResult.java │ │ │ │ ├── SearchParameters.java │ │ │ │ ├── SearchTags.java │ │ │ │ └── impl │ │ │ │ │ └── SimpleSearchService.java │ │ │ │ ├── services │ │ │ │ ├── NamespaceService.java │ │ │ │ ├── PrivilegeService.java │ │ │ │ ├── RoleService.java │ │ │ │ ├── RoleUtil.java │ │ │ │ ├── ServiceValidationUtil.java │ │ │ │ ├── UserBuilder.java │ │ │ │ ├── UserNamespaceRoleService.java │ │ │ │ ├── UserRepositoryRoleService.java │ │ │ │ ├── UserService.java │ │ │ │ ├── UserUtil.java │ │ │ │ └── exceptions │ │ │ │ │ ├── CollisionException.java │ │ │ │ │ ├── DoesNotExistException.java │ │ │ │ │ ├── InvalidUserException.java │ │ │ │ │ ├── NameSyntaxException.java │ │ │ │ │ ├── OperationForbiddenException.java │ │ │ │ │ └── PrivateNamespaceQuotaExceededException.java │ │ │ │ ├── tenant │ │ │ │ ├── NamespaceExistException.java │ │ │ │ ├── NewNamespaceNotPrivateException.java │ │ │ │ ├── NewNamespacesNotSupersetException.java │ │ │ │ ├── UpdateNotAllowedException.java │ │ │ │ └── UserDoesntExistException.java │ │ │ │ ├── upgrade │ │ │ │ ├── AbstractUpgradeTask.java │ │ │ │ ├── IUpgradeService.java │ │ │ │ ├── IUpgradeTask.java │ │ │ │ ├── IUpgradeTaskCondition.java │ │ │ │ ├── IUserUpgradeTask.java │ │ │ │ ├── UpgradeProblem.java │ │ │ │ └── impl │ │ │ │ │ ├── AbstractUserUpgradeTask.java │ │ │ │ │ ├── DefaultUpgradeService.java │ │ │ │ │ ├── TargetPlatformUpgradeTask.java │ │ │ │ │ └── VortolangUpgradeTask.java │ │ │ │ ├── utils │ │ │ │ ├── LoggingInterceptor.java │ │ │ │ ├── ModelUtils.java │ │ │ │ ├── NamespaceUtils.java │ │ │ │ ├── PreConditions.java │ │ │ │ └── ZipUtils.java │ │ │ │ ├── web │ │ │ │ ├── AbstractRepositoryController.java │ │ │ │ ├── ControllerUtils.java │ │ │ │ ├── GenericApplicationException.java │ │ │ │ ├── HomeController.java │ │ │ │ ├── Status.java │ │ │ │ ├── account │ │ │ │ │ ├── AccountController.java │ │ │ │ │ ├── SessionTimeoutController.java │ │ │ │ │ └── dto │ │ │ │ │ │ ├── DBMigrationResult.java │ │ │ │ │ │ └── UserDto.java │ │ │ │ ├── admin │ │ │ │ │ ├── DBMigrationController.java │ │ │ │ │ ├── DiagnosticsController.java │ │ │ │ │ ├── ForceReindexingController.java │ │ │ │ │ ├── IndexingController.java │ │ │ │ │ └── RestorePoliciesController.java │ │ │ │ ├── api │ │ │ │ │ ├── ApidocController.java │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── AbstractGeneratorController.java │ │ │ │ │ │ ├── AttachmentController.java │ │ │ │ │ │ ├── GenericGeneratorController.java │ │ │ │ │ │ ├── ImportController.java │ │ │ │ │ │ ├── ModelController.java │ │ │ │ │ │ ├── ModelSearchController.java │ │ │ │ │ │ ├── NamespaceController.java │ │ │ │ │ │ ├── dto │ │ │ │ │ │ ├── AttachResult.java │ │ │ │ │ │ ├── Collaborator.java │ │ │ │ │ │ ├── CommentDTO.java │ │ │ │ │ │ ├── ICollaborator.java │ │ │ │ │ │ ├── ImporterInfo.java │ │ │ │ │ │ ├── ModelFullDetailsDTO.java │ │ │ │ │ │ ├── ModelHandle.java │ │ │ │ │ │ ├── ModelInfoDto.java │ │ │ │ │ │ ├── ModelLink.java │ │ │ │ │ │ ├── ModelMappingDTO.java │ │ │ │ │ │ ├── ModelMinimalInfoDTO.java │ │ │ │ │ │ ├── ModelReferenceDTO.java │ │ │ │ │ │ ├── NamespaceAccessRequestDTO.java │ │ │ │ │ │ ├── NamespaceDto.java │ │ │ │ │ │ └── OperationResult.java │ │ │ │ │ │ ├── plugins │ │ │ │ │ │ ├── BoschIotSuitePluginController.java │ │ │ │ │ │ ├── EclipseDittoPluginController.java │ │ │ │ │ │ ├── EclipseHonoPluginController.java │ │ │ │ │ │ └── OpenAPIPluginController.java │ │ │ │ │ │ └── util │ │ │ │ │ │ ├── EntityDTOConverter.java │ │ │ │ │ │ └── NamespaceValidator.java │ │ │ │ ├── backup │ │ │ │ │ └── BackupController.java │ │ │ │ ├── comment │ │ │ │ │ └── CommentController.java │ │ │ │ ├── core │ │ │ │ │ ├── ModelDtoFactory.java │ │ │ │ │ ├── ModelRepositoryController.java │ │ │ │ │ ├── ModelResolveController.java │ │ │ │ │ ├── PayloadMappingController.java │ │ │ │ │ ├── async │ │ │ │ │ │ ├── AsyncModelAttachmentsFetcher.java │ │ │ │ │ │ ├── AsyncModelLinksFetcher.java │ │ │ │ │ │ ├── AsyncModelMappingsFetcher.java │ │ │ │ │ │ ├── AsyncModelReferenceFetcher.java │ │ │ │ │ │ ├── AsyncModelSyntaxFetcher.java │ │ │ │ │ │ ├── AsyncModelTaskRunner.java │ │ │ │ │ │ └── AsyncWorkflowActionsFetcher.java │ │ │ │ │ ├── dto │ │ │ │ │ │ ├── BluetoothQuery.java │ │ │ │ │ │ ├── LWM2MQuery.java │ │ │ │ │ │ ├── ModelContent.java │ │ │ │ │ │ ├── ResolveQuery.java │ │ │ │ │ │ └── mapping │ │ │ │ │ │ │ ├── TestContentType.java │ │ │ │ │ │ │ ├── TestMappingRequest.java │ │ │ │ │ │ │ └── TestMappingResponse.java │ │ │ │ │ ├── exceptions │ │ │ │ │ │ ├── BulkUploadException.java │ │ │ │ │ │ ├── NotAuthorizedException.java │ │ │ │ │ │ └── UploadTooLargeException.java │ │ │ │ │ └── templates │ │ │ │ │ │ ├── InfomodelTemplate.xtend │ │ │ │ │ │ └── ModelTemplate.xtend │ │ │ │ ├── generation │ │ │ │ │ └── GeneratorController.java │ │ │ │ ├── listeners │ │ │ │ │ ├── AuthenticationEntryPoint.java │ │ │ │ │ ├── AuthenticationFailureHandler.java │ │ │ │ │ └── AuthenticationSuccessHandler.java │ │ │ │ ├── oauth │ │ │ │ │ └── OAuthProvider.java │ │ │ │ ├── security │ │ │ │ │ ├── HasPermissionEvaluator.java │ │ │ │ │ └── UserDBAuthoritiesExtractor.java │ │ │ │ ├── ui │ │ │ │ │ ├── AngularCsrfHeaderFilter.java │ │ │ │ │ └── ModelDetailsResolver.java │ │ │ │ └── workflow │ │ │ │ │ ├── WorkflowController.java │ │ │ │ │ └── dto │ │ │ │ │ ├── WorkflowAction.java │ │ │ │ │ ├── WorkflowResponse.java │ │ │ │ │ └── WorkflowState.java │ │ │ │ └── workflow │ │ │ │ ├── IWorkflowService.java │ │ │ │ ├── InvalidInputException.java │ │ │ │ ├── ModelState.java │ │ │ │ ├── WorkflowException.java │ │ │ │ ├── impl │ │ │ │ ├── DefaultAction.java │ │ │ │ ├── DefaultState.java │ │ │ │ ├── DefaultWorkflowService.java │ │ │ │ ├── SimpleWorkflowModel.java │ │ │ │ ├── conditions │ │ │ │ │ ├── AbstractWorkflowCondition.java │ │ │ │ │ ├── HasRoleCondition.java │ │ │ │ │ ├── IsAdminCondition.java │ │ │ │ │ ├── IsAnonymousModel.java │ │ │ │ │ ├── IsLoggedIn.java │ │ │ │ │ ├── IsOwnerCondition.java │ │ │ │ │ ├── IsReviewerCondition.java │ │ │ │ │ └── OrCondition.java │ │ │ │ ├── functions │ │ │ │ │ ├── BulkApproveFunction.java │ │ │ │ │ ├── BulkReleaseFunction.java │ │ │ │ │ ├── ClaimOwnership.java │ │ │ │ │ ├── GrantAnonymousAccessPolicy.java │ │ │ │ │ ├── GrantCollaboratorAccessPolicy.java │ │ │ │ │ ├── GrantReviewerModelPolicy.java │ │ │ │ │ ├── GrantRoleAccessPolicy.java │ │ │ │ │ ├── PendingApprovalNotification.java │ │ │ │ │ ├── ReadOnlyRoleAccessPolicy.java │ │ │ │ │ └── RemoveRoleAccessPolicy.java │ │ │ │ └── validators │ │ │ │ │ └── CheckStatesOfDependenciesValidator.java │ │ │ │ └── model │ │ │ │ ├── IAction.java │ │ │ │ ├── IState.java │ │ │ │ ├── IWorkflowCondition.java │ │ │ │ ├── IWorkflowElement.java │ │ │ │ ├── IWorkflowFunction.java │ │ │ │ ├── IWorkflowModel.java │ │ │ │ └── IWorkflowValidator.java │ │ └── resources │ │ │ ├── .gitignore │ │ │ ├── emailtemplates │ │ │ ├── added_to_namespace.ftl │ │ │ ├── checkin_watch.ftl │ │ │ ├── comment_reply.ftl │ │ │ ├── delete_account.ftl │ │ │ ├── pending_workitem.ftl │ │ │ ├── registration.ftl │ │ │ ├── removed_from_namespace.ftl │ │ │ ├── request_access_to_namespace.ftl │ │ │ └── roles_changed_in_namespace.ftl │ │ │ ├── error-messages.json │ │ │ └── sequencer-model.cnd │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── repository │ │ │ ├── UnitTestBase.java │ │ │ ├── UnitTestSuite.java │ │ │ ├── account │ │ │ └── UserAccountServiceTest.java │ │ │ ├── backup │ │ │ └── RepositoryAdminTest.java │ │ │ ├── conversion │ │ │ └── ModelIdToModelContentConverterTest.java │ │ │ ├── core │ │ │ ├── AttachmentValidatorTest.java │ │ │ ├── ErrorMessageProviderTest.java │ │ │ ├── MappingTest.java │ │ │ ├── ModelDtoFactoryTest.java │ │ │ ├── ModelIdTest.java │ │ │ ├── ModelParserTest.java │ │ │ ├── ModelRefactoringTest.java │ │ │ ├── ModelRepositoryAttachmentTest.java │ │ │ ├── ModelRepositoryDiagnosticsTest.java │ │ │ ├── ModelRepositoryTest.java │ │ │ ├── ModelRepositoryTest2.java │ │ │ ├── RepositoryUnitTestSuite.java │ │ │ ├── RequestRepositorySessionHelperTest.java │ │ │ ├── resolver │ │ │ │ ├── BlueToothDeviceInfoProfileResolverTest.java │ │ │ │ └── Lwm2mObjectIdResolverTest.java │ │ │ └── search │ │ │ │ ├── AllSearchTests.java │ │ │ │ ├── AuthorSearchSimpleTest.java │ │ │ │ ├── GeneralSearchTest.java │ │ │ │ ├── MixedSearchTest.java │ │ │ │ ├── NameSearchSimpleTest.java │ │ │ │ ├── NamespaceSearchSimpleTest.java │ │ │ │ ├── SearchTestInfrastructure.java │ │ │ │ ├── SearchUnitTest.java │ │ │ │ ├── StateSearchSimpleTest.java │ │ │ │ ├── TypeSearchSimpleTest.java │ │ │ │ ├── UserReferenceSearchSimpleTest.java │ │ │ │ ├── VersionSearchSimpleTest.java │ │ │ │ └── VisibilitySearchSimpleTest.java │ │ │ ├── importer │ │ │ ├── DependencyManagerTest.java │ │ │ ├── ImporterUnitTestSuite.java │ │ │ ├── ModelBulkImportTest.java │ │ │ └── ModelImporterTest.java │ │ │ ├── indexing │ │ │ └── IndexingTest.java │ │ │ ├── mapping │ │ │ └── PayloadMappingSpecificationTest.java │ │ │ ├── model │ │ │ ├── BulkOperationServiceTest.java │ │ │ └── ModelContentDeserializationTest.java │ │ │ ├── plugin │ │ │ └── generator │ │ │ │ └── impl │ │ │ │ └── GeneratedOutputAttachmentHandlerTest.java │ │ │ ├── services │ │ │ └── ValidationTest.java │ │ │ ├── utils │ │ │ ├── DummySecurityContext.java │ │ │ ├── DummySecurityCredentials.java │ │ │ ├── DummySecurityProvider.java │ │ │ ├── MockAppEventPublisher.java │ │ │ ├── NamespaceProvider.java │ │ │ ├── RoleProvider.java │ │ │ └── TestConfig.java │ │ │ └── workflow │ │ │ └── WorkflowTest.java │ │ └── resources │ │ ├── application-context.xml │ │ ├── application-mysql.yml │ │ ├── application.properties │ │ ├── json │ │ ├── TestModelContent_dictionary.json │ │ └── TestModelContent_primitive.json │ │ ├── logback.xml │ │ ├── mappingRequest.json │ │ ├── mappingRequest2.json │ │ ├── modelcontent_lwm2m.json │ │ ├── namespaces │ │ ├── invalid_namespaces.txt │ │ └── valid_namespaces.txt │ │ ├── sample_models │ │ ├── Accelerometer-invalid.fbmodel │ │ ├── Color.type │ │ ├── Color.xmi │ │ ├── Color2.type │ │ ├── Color3.type │ │ ├── Color4.type │ │ ├── Color5.type │ │ ├── Color6.type │ │ ├── Color7.type │ │ ├── ColorEnum.type │ │ ├── ColorLightIM.infomodel │ │ ├── Color_encoding.type │ │ ├── Color_ios.mapping │ │ ├── Colorlight.fbmodel │ │ ├── Colorlight2.fbmodel │ │ ├── Colorlight3.fbmodel │ │ ├── Corrupt-model_missingVersion.type │ │ ├── Corrupt-model_namespace.type │ │ ├── Corrupt-model_olderVersionOfMetaModel.fbmodel │ │ ├── FbWithMultipleProperty.fbmodel │ │ ├── HueLightStrips.infomodel │ │ ├── InfoModelWithoutNamespace.infomodel │ │ ├── Switcher.fbmodel │ │ ├── backup-withImages.xml │ │ ├── backup1.xml │ │ ├── bluetooth │ │ │ ├── ColorLight.fbmodel │ │ │ ├── ColorLightIM.infomodel │ │ │ └── ColorLight_bluetooth.mapping │ │ ├── diagnosis │ │ │ ├── vorto-test-diagnosis-baseline.xml │ │ │ └── vorto-test-diagnosis-missingreference.xml │ │ ├── invalid-models.zip │ │ ├── lwm2m │ │ │ ├── 3310.xml │ │ │ ├── 3310_xxe.xml │ │ │ ├── 3334.xml │ │ │ ├── ColorLight.fbmodel │ │ │ ├── ColorLight_lwm2m.mapping │ │ │ └── lwm2m.zip │ │ ├── mapping │ │ │ ├── DualTemperatureSensor.infomodel │ │ │ ├── DualTemperatureSensorPayloadMapping.mapping │ │ │ ├── IndoorTemperaturePayloadMapping.mapping │ │ │ ├── OutdoorTemperaturePayloadMapping.mapping │ │ │ └── Temperature.fbmodel │ │ ├── missing-models.zip │ │ ├── model_without_vortolang.type │ │ ├── models.zip │ │ ├── models2.zip │ │ ├── modelsWithSameId.zip │ │ ├── modelsWithWrongGrammar.zip │ │ ├── models_same_name.zip │ │ ├── officialprefix_point3d.type │ │ ├── officialprefix_point3d_with_dependency.type │ │ ├── officialprefix_point4d_with_dependency.type │ │ ├── org.eclipse.other.type │ │ ├── org.eclipse.vorto.tutorial.type │ │ ├── payloadmapping │ │ │ ├── org.eclipse.vorto_Battery_1.0.0.fbmodel │ │ │ ├── org.eclipse.vorto_MyDevice_1.0.0.infomodel │ │ │ └── org.eclipse.vorto_Voltage_1.0.0.fbmodel │ │ ├── privateprefix_point2d.type │ │ ├── privateprefix_point3d.type │ │ ├── sample.mapping │ │ ├── sample.png │ │ ├── sample2.png │ │ ├── valid-models-with-alien-file.zip │ │ ├── valid-models.zip │ │ ├── valid-models1.zip │ │ ├── validmodels_withmappings.zip │ │ ├── vortobackup_corrupt.xml │ │ ├── vortobackup_valid.xml │ │ └── vortoprivateColor.type │ │ ├── sequencer-model.cnd │ │ └── vorto-repository.json ├── repository-editor │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── vorto │ │ └── editor │ │ └── web │ │ ├── datatype │ │ ├── DatatypeServlet.xtend │ │ ├── DatatypeWebModule.java │ │ └── DatatypeWebSetup.xtend │ │ ├── functionblock │ │ ├── FunctionblockServlet.xtend │ │ ├── FunctionblockWebModule.java │ │ └── FunctionblockWebSetup.xtend │ │ ├── infomodel │ │ ├── InfomodelServlet.xtend │ │ ├── InfomodelWebModule.java │ │ └── InfomodelWebSetup.xtend │ │ ├── mapping │ │ ├── MappingServlet.xtend │ │ ├── MappingWebModule.java │ │ └── MappingWebSetup.xtend │ │ └── persistence │ │ ├── WebEditorResourceHandler.xtend │ │ └── WebEditorResourceSetProvider.xtend ├── repository-elasticsearch │ ├── Readme.md │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── repository │ │ │ └── search │ │ │ ├── ElasticSearchService.java │ │ │ └── extractor │ │ │ ├── BasicIndexFieldExtractor.java │ │ │ └── IIndexFieldExtractor.java │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── repository │ │ │ └── search │ │ │ ├── AllSearchTests.java │ │ │ ├── AuthorSearchSimpleTest.java │ │ │ ├── GeneralSearchTest.java │ │ │ ├── MixedSearchTest.java │ │ │ ├── NameSearchSimpleTest.java │ │ │ ├── NamespaceSearchSimpleTest.java │ │ │ ├── SearchTestInfrastructure.java │ │ │ ├── StateSearchSimpleTest.java │ │ │ ├── TypeSearchSimpleTest.java │ │ │ ├── UserReferenceSearchSimpleTest.java │ │ │ ├── VersionSearchSimpleTest.java │ │ │ ├── VisibilitySearchSimpleTest.java │ │ │ └── utils │ │ │ └── RoleProvider.java │ │ └── resources │ │ ├── logback.xml │ │ ├── sample_models │ │ ├── Color.type │ │ ├── ColorLightIM.infomodel │ │ ├── Color_ios.mapping │ │ ├── Colorlight.fbmodel │ │ ├── HueLightStrips.infomodel │ │ └── Switcher.fbmodel │ │ └── vorto-repository.json ├── repository-java-client │ ├── Readme.md │ ├── pom.xml │ ├── sample │ │ ├── input.json │ │ ├── invalid.json │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── demo │ │ │ └── DataValidation.java │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── repository │ │ │ ├── api │ │ │ └── impl │ │ │ │ ├── DefaultMappingClient.java │ │ │ │ ├── DefaultModelGeneration.java │ │ │ │ ├── DefaultModelRepository.java │ │ │ │ ├── ImplementationBase.java │ │ │ │ ├── JxPathContextFactory.java │ │ │ │ ├── MappingQueryJxPath.java │ │ │ │ ├── RequestContext.java │ │ │ │ ├── TextFilter.java │ │ │ │ └── XPathEvaluator.java │ │ │ └── client │ │ │ ├── IRepositoryClient.java │ │ │ ├── ModelContent.java │ │ │ ├── ModelInfo.java │ │ │ ├── ModelNotFoundException.java │ │ │ ├── ModelQueryException.java │ │ │ ├── RepositoryClientBuilder.java │ │ │ ├── RepositoryClientException.java │ │ │ ├── attachment │ │ │ ├── Attachment.java │ │ │ └── Tag.java │ │ │ ├── generation │ │ │ ├── GeneratedOutput.java │ │ │ ├── GenerationException.java │ │ │ ├── GeneratorInfo.java │ │ │ ├── GeneratorNotFoundException.java │ │ │ └── GeneratorUrlBuilder.java │ │ │ └── impl │ │ │ ├── DefaultRepositoryClient.java │ │ │ ├── ImplementationBase.java │ │ │ └── RequestContext.java │ │ └── test │ │ └── resources │ │ ├── Color3.type │ │ ├── Color3_invalid.type │ │ ├── demofunctionblock.json │ │ ├── demofunctionblockcontent.json │ │ ├── generated.zip │ │ ├── searchgenerators.json │ │ └── searchmodel.json ├── repository-oauth-boschid │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── repository │ │ │ └── oauth │ │ │ ├── BoschIDOAuthProvider.java │ │ │ ├── BoschIDOAuthProviderConfiguration.java │ │ │ ├── BoschIoTSuiteOAuthPrincipalExtractor.java │ │ │ ├── BoschIoTSuiteOAuthProviderAuthCode.java │ │ │ ├── BoschIoTSuiteOAuthProviderConfiguration.java │ │ │ ├── CiamIdNotFoundException.java │ │ │ ├── EidpOAuth2RestTemplate.java │ │ │ ├── EidpPrincipalExtractor.java │ │ │ ├── EidpResourceDetails.java │ │ │ ├── Interceptor.java │ │ │ ├── JwtTokenUserInfoServices.java │ │ │ ├── OAuthAuthenticationSuccessHandler.java │ │ │ └── ResourceIdentificationHelper.java │ │ └── test │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── vorto │ │ └── repository │ │ └── oauth │ │ ├── AbstractVerifierTest.java │ │ ├── BoschIoTSuiteOAuthProviderAuthCodeTest.java │ │ ├── HydraTokenVerifierTest.java │ │ ├── PublicKeyHelperTest.java │ │ ├── ResourceIdentifierTest.java │ │ └── VerificationHelperTest.java ├── repository-oauth-eclipse │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── vorto │ │ └── repository │ │ └── oauth │ │ ├── EclipseOAuthProviderConfiguration.java │ │ └── EclipseRepositoryAuthProvider.java ├── repository-oauth-github │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── repository │ │ │ └── oauth │ │ │ ├── GithubOAuthProviderConfiguration.java │ │ │ └── GithubRepositoryAuthProvider.java │ │ └── test │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── vorto │ │ └── repository │ │ └── oauth │ │ └── GithubOAuthProviderConfigurationTest.java ├── repository-server-config │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── vorto │ │ └── repository │ │ └── server │ │ └── config │ │ └── config │ │ ├── AsyncConfiguration.java │ │ ├── BaseConfiguration.java │ │ ├── ElasticSearchConfiguration.java │ │ ├── MethodSecurityConfig.java │ │ ├── MyAnonymousAuthFilter.java │ │ ├── RepositoryCachingConfiguration.java │ │ ├── RepositoryConfiguration.java │ │ ├── SecurityConfiguration.java │ │ ├── SwaggerConfiguration.java │ │ ├── UploadStorageConfiguration.java │ │ ├── WebEditorConfiguration.java │ │ └── plugins │ │ ├── Plugin.java │ │ └── PluginConfiguration.java ├── repository-server │ ├── Readme.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── vorto │ │ │ │ └── repository │ │ │ │ └── web │ │ │ │ ├── VortoErrorHandler.java │ │ │ │ └── VortoRepository.java │ │ └── resources │ │ │ ├── application-azure.yml │ │ │ ├── application-int.yml │ │ │ ├── application-local-benchmark-test.yml │ │ │ ├── application-local-dev-mysql.yml │ │ │ ├── application-local-dev-simplesearch.yml │ │ │ ├── application-local-dev.yml │ │ │ ├── application-local-https.yml │ │ │ ├── application-local-test.yml │ │ │ ├── application-local-ui-test.yml │ │ │ ├── application-local.yml │ │ │ ├── application-prod.yml │ │ │ ├── application-test.yml │ │ │ ├── application.yml │ │ │ ├── banner.txt │ │ │ ├── db │ │ │ └── changelog │ │ │ │ ├── liquibase-changeLog-0.13.xml │ │ │ │ ├── liquibase-changeLog-1.0.1.xml │ │ │ │ └── scripts │ │ │ │ ├── change_comment_authorship.sql │ │ │ │ ├── createdby_procedure.sql │ │ │ │ ├── merge_bosch_oauth_providers.sql │ │ │ │ ├── migrate_db_0xx_to_013_H2.sql │ │ │ │ ├── migrate_db_0xx_to_013_MariaDB.sql │ │ │ │ ├── migrate_db_2018_11_09.sql │ │ │ │ ├── migrate_db_comment_2020_H2.sql │ │ │ │ ├── migrate_db_comment_2020_MariaDB.sql │ │ │ │ ├── migrate_db_from_013_MariaDB_debug.sql │ │ │ │ ├── migrate_db_from_013_MariaDB_preparation.sql │ │ │ │ └── remove_username_uniqueness.sql │ │ │ ├── jgroups-config.xml │ │ │ ├── liquibase-changeLog.xml │ │ │ ├── selfsigned.jks │ │ │ ├── static │ │ │ ├── error │ │ │ │ └── error-template.html │ │ │ ├── index.html │ │ │ ├── main.js │ │ │ └── repository.js │ │ │ ├── vorto-repository-config-file.json │ │ │ ├── vorto-repository-config-h2-test.json │ │ │ ├── vorto-repository-config-h2.json │ │ │ ├── vorto-repository-config-mysql-local-benchmark.json │ │ │ └── vorto-repository-config-mysql.json │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── vorto │ │ │ └── repository │ │ │ ├── client │ │ │ └── generation │ │ │ │ └── GeneratorUrlBuilderTest.java │ │ │ └── server │ │ │ ├── benchmark │ │ │ └── ApiBenchmarkTest.java │ │ │ ├── it │ │ │ ├── AccountControllerTest.java │ │ │ ├── AttachmentsControllerIntegrationTest.java │ │ │ ├── CORSRequestIntegrationTest.java │ │ │ ├── CommentControllerTest.java │ │ │ ├── IntegrationTestBase.java │ │ │ ├── IntegrationTestSuite.java │ │ │ ├── KeywordNamespaceTest.java │ │ │ ├── ModelControllerIntegrationTest.java │ │ │ ├── ModelRepositoryControllerTest.java │ │ │ ├── ModelSearchControllerIntegrationTest.java │ │ │ ├── ModeshapeDoctorTest.java │ │ │ ├── NamespaceControllerIntegrationTest.java │ │ │ ├── NamespaceRoleConstants.java │ │ │ ├── RepositoryJavaClientTest.java │ │ │ ├── TestModel.java │ │ │ └── TestUtils.java │ │ │ └── ui │ │ │ ├── AbstractUITest.java │ │ │ ├── AllTests.java │ │ │ ├── AuthenticationProviderMock.java │ │ │ ├── BasicRepositoryUITest.java │ │ │ ├── MockApplicationSecurity.java │ │ │ ├── ModelDetailsUITest.java │ │ │ ├── SeleniumVortoHelper.java │ │ │ └── util │ │ │ ├── CreateModelParams.java │ │ │ ├── CreateModelResultHandler.java │ │ │ ├── CreateNamespaceParams.java │ │ │ ├── RenameModelParams.java │ │ │ ├── RenameModelResultHandler.java │ │ │ └── ResultHandler.java │ │ └── resources │ │ ├── VortoTestcontainer3.tar.xz │ │ ├── benchmarkTests │ │ ├── apiCallGetModel.jmx │ │ └── user.properties │ │ ├── generated-boschiotsuite-arduino-lampFb.zip │ │ ├── generated-boschiotsuite-arduino.zip │ │ ├── generated-boschiotsuite-java-lampFb.zip │ │ ├── generated-boschiotsuite-java.zip │ │ ├── generated-boschiotsuite-python-lampFb.zip │ │ ├── generated-boschiotsuite-python.zip │ │ ├── generated-eclipseditto-lampfb.zip │ │ ├── generated-eclipseditto.zip │ │ ├── models │ │ ├── Address.fbmodel │ │ ├── Color.type │ │ ├── Color2.type │ │ ├── Colour.type │ │ ├── Fb_withDictionary.fbmodel │ │ ├── HasBooleanDefaultConstraint.type │ │ ├── HasFloatDefaultConstraint.type │ │ ├── Lamp.fbmodel │ │ ├── Lamp2.fbmodel │ │ ├── Location.fbmodel │ │ ├── Location2.fbmodel │ │ ├── Location3.fbmodel │ │ ├── MalformedVortolangVersion.type │ │ ├── MissingNamespace.type │ │ ├── MissingVersion.type │ │ ├── ModelIDCaseInsensitiveTest.type │ │ ├── StreetLamp.infomodel │ │ ├── TrackingDevice.infomodel │ │ ├── UnsupportedVortolangVersion.type │ │ ├── Zone.type │ │ ├── invalid │ │ │ ├── InvalidLocation.fbmodel │ │ │ ├── InvalidLocation10.fbmodel │ │ │ ├── InvalidLocation3.fbmodel │ │ │ ├── InvalidLocation4.fbmodel │ │ │ ├── InvalidLocation5.fbmodel │ │ │ ├── InvalidLocation6.fbmodel │ │ │ ├── InvalidLocation7.fbmodel │ │ │ ├── InvalidLocation8.fbmodel │ │ │ └── InvalidLocation9.fbmodel │ │ └── models.zip │ │ ├── origins │ │ ├── invalid_origins.txt │ │ └── valid_origins.txt │ │ └── prepare_tables.sql ├── repository-web │ ├── dist │ │ ├── css │ │ │ ├── comment.css │ │ │ └── style.css │ │ ├── images │ │ │ ├── GitHub-Mark-64px.png │ │ │ ├── bosch-social.png │ │ │ ├── bosch_iot_suite_webapp.png │ │ │ ├── bosch_iot_suite_webapp2.png │ │ │ ├── dt.png │ │ │ ├── eclipse.png │ │ │ ├── favicon.png │ │ │ ├── fb.png │ │ │ ├── functionblock.png │ │ │ ├── github-social.png │ │ │ ├── im.png │ │ │ ├── infomodel.png │ │ │ ├── mapping.png │ │ │ ├── mappingspec.png │ │ │ └── vortoLogo.png │ │ ├── js │ │ │ ├── ace-modes │ │ │ │ ├── mode-fbmodel.js │ │ │ │ ├── mode-infomodel.js │ │ │ │ ├── mode-mapping.js │ │ │ │ └── mode-type.js │ │ │ ├── controllers │ │ │ │ ├── adminController.js │ │ │ │ ├── createTechnicalUserController.js │ │ │ │ ├── detailsController.js │ │ │ │ ├── generatorController.js │ │ │ │ ├── homeController.js │ │ │ │ ├── importController.js │ │ │ │ ├── manage │ │ │ │ │ ├── namespaceManagement.js │ │ │ │ │ └── namespaceUserManagement.js │ │ │ │ ├── mapping │ │ │ │ │ └── mappingbuilder-controller.js │ │ │ │ ├── modeshapeDoctorController.js │ │ │ │ ├── postLoginController.js │ │ │ │ ├── requestAccessToNamespaceController.js │ │ │ │ ├── searchController.js │ │ │ │ ├── settingsController.js │ │ │ │ ├── signUpController.js │ │ │ │ └── updateController.js │ │ │ ├── directive │ │ │ │ └── directives.js │ │ │ ├── init │ │ │ │ ├── appController.js │ │ │ │ ├── appControllerLoader.js │ │ │ │ ├── appDirective.js │ │ │ │ ├── appDirectiveLoader.js │ │ │ │ ├── appService.js │ │ │ │ └── appServiceLoader.js │ │ │ └── service │ │ │ │ ├── commonDialogServices.js │ │ │ │ ├── modelCreationService.js │ │ │ │ ├── modelDetailsService.js │ │ │ │ └── sessionTimeoutService.js │ │ └── partials │ │ │ ├── admin-template.html │ │ │ ├── admin │ │ │ ├── createNamespace.html │ │ │ ├── createOrUpdateUser.html │ │ │ ├── createTechnicalUser.html │ │ │ ├── editModeshapeACL.html │ │ │ ├── editModeshapeProperty.html │ │ │ ├── modeshapeDoctor.html │ │ │ ├── namespaceManagement.html │ │ │ ├── namespaceUserManagement.html │ │ │ └── requestAccessToNamespace.html │ │ │ ├── createmodel-template.html │ │ │ ├── createversion-template.html │ │ │ ├── details-template.html │ │ │ ├── dialog │ │ │ ├── confirmation_dialog.html │ │ │ ├── confirmation_publish.html │ │ │ ├── create_policy_entry-dialog.html │ │ │ ├── prompt_dialog.html │ │ │ └── restoration_prompt_and_confirm.html │ │ │ ├── generator-accordion.html │ │ │ ├── generator-config-template.html │ │ │ ├── generators-template.html │ │ │ ├── import-template.html │ │ │ ├── login-template.html │ │ │ ├── mapping │ │ │ ├── includes │ │ │ │ └── fbmapping-template.html │ │ │ └── mappingcreator.html │ │ │ ├── privacypolicy-dialog.html │ │ │ ├── privacypolicy-template.html │ │ │ ├── rest-api-template.html │ │ │ ├── search-template.html │ │ │ ├── settings-template.html │ │ │ ├── signup-template.html │ │ │ ├── templates │ │ │ ├── modelcreation │ │ │ │ ├── description_datatype.html │ │ │ │ ├── description_functionblock.html │ │ │ │ ├── description_infomodel.html │ │ │ │ ├── description_mapping.html │ │ │ │ ├── infomodel_step3.html │ │ │ │ ├── modelname_step2.html │ │ │ │ └── modeltype_step1.html │ │ │ ├── pagination.custom.html │ │ │ └── session-timeout-warning.html │ │ │ └── update-template.html │ └── pom.xml └── tests │ └── jmeterTests │ ├── PerformanceTest_ThingRepo.jmx │ ├── PlatformData_Thing.csv │ └── pom.xml ├── sonar-project.properties └── utilities ├── Readme.md ├── dsl-reader ├── pom.xml └── src │ ├── main │ └── java │ │ └── org │ │ └── eclipse │ │ └── vorto │ │ └── utilities │ │ └── reader │ │ ├── DefaultModelWorkspace.java │ │ ├── IModelWorkspace.java │ │ └── ModelWorkspaceReader.java │ └── test │ ├── java │ └── org │ │ └── eclipse │ │ └── vorto │ │ └── utilities │ │ ├── ModelReaderTest.java │ │ └── ModelSerializerTest.java │ └── resources │ ├── dsls │ ├── Brightness.type │ ├── ColorLight.type │ ├── Color_encoding.type │ ├── Light.type │ ├── ParentFbToBeExtended.functionblock │ ├── SomeFb.fbmodel │ ├── SubTestFb.functionblock │ ├── SuperFb.fbmodel │ ├── SuperSuperFb.fbmodel │ ├── TestFb.functionblock │ ├── TestModel.infomodel │ ├── com.example.aws_AWSButtonMapping_1_0_0.mapping │ ├── com.example.aws_Button1Mapping_1_0_0.mapping │ ├── com.example.aws_Button2Mapping_1_0_0.mapping │ ├── com.example_AWSIoTButton_1_0_0.infomodel │ ├── com.ipso.smartobjects_Push_button_0_0_1.fbmodel │ ├── expected_saved_entity.type │ ├── expected_saved_enum.type │ ├── expected_saved_infomodel.infomodel │ ├── expected_saved_model.fbmodel │ ├── sample.mapping │ └── superTypeTestCases │ │ ├── GenericFunctionBlock.fbmodel │ │ ├── SecondFunctionBlock.fbmodel │ │ ├── TestFunctionBlockWithEntity.fbmodel │ │ └── TestInfomodelWithEntity.infomodel │ ├── mappings.zip │ └── models.zip └── pom.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/.gitignore -------------------------------------------------------------------------------- /.remark_ignore: -------------------------------------------------------------------------------- 1 | website/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/Readme.md -------------------------------------------------------------------------------- /core-bundles/feature/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/core-bundles/feature/build.properties -------------------------------------------------------------------------------- /core-bundles/feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/core-bundles/feature/feature.xml -------------------------------------------------------------------------------- /core-bundles/feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/core-bundles/feature/pom.xml -------------------------------------------------------------------------------- /core-bundles/language/org.eclipse.vorto.editor.infomodel.ui/.gitignore: -------------------------------------------------------------------------------- 1 | /plugin.xml_gen 2 | /target/ 3 | -------------------------------------------------------------------------------- /core-bundles/language/org.eclipse.vorto.editor.infomodel/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | -------------------------------------------------------------------------------- /core-bundles/language/org.eclipse.vorto.editor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/core-bundles/language/org.eclipse.vorto.editor/.gitignore -------------------------------------------------------------------------------- /core-bundles/language/org.eclipse.vorto.editor/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/core-bundles/language/org.eclipse.vorto.editor/about.html -------------------------------------------------------------------------------- /core-bundles/language/org.eclipse.vorto.editor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/core-bundles/language/org.eclipse.vorto.editor/pom.xml -------------------------------------------------------------------------------- /core-bundles/language/org.eclipse.vorto.editor/src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core-bundles/language/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/core-bundles/language/pom.xml -------------------------------------------------------------------------------- /core-bundles/meta-model/org.eclipse.vorto.core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/core-bundles/meta-model/org.eclipse.vorto.core/.gitignore -------------------------------------------------------------------------------- /core-bundles/meta-model/org.eclipse.vorto.core/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/core-bundles/meta-model/org.eclipse.vorto.core/about.html -------------------------------------------------------------------------------- /core-bundles/meta-model/org.eclipse.vorto.core/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/core-bundles/meta-model/org.eclipse.vorto.core/plugin.xml -------------------------------------------------------------------------------- /core-bundles/meta-model/org.eclipse.vorto.core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/core-bundles/meta-model/org.eclipse.vorto.core/pom.xml -------------------------------------------------------------------------------- /core-bundles/meta-model/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/core-bundles/meta-model/pom.xml -------------------------------------------------------------------------------- /core-bundles/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/core-bundles/pom.xml -------------------------------------------------------------------------------- /core-bundles/targetplatform/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/core-bundles/targetplatform/pom.xml -------------------------------------------------------------------------------- /core-bundles/targetplatform/vorto.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/core-bundles/targetplatform/vorto.target -------------------------------------------------------------------------------- /core-bundles/updatesite/category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/core-bundles/updatesite/category.xml -------------------------------------------------------------------------------- /core-bundles/updatesite/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/core-bundles/updatesite/pom.xml -------------------------------------------------------------------------------- /device-adapter/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/device-adapter/Readme.md -------------------------------------------------------------------------------- /device-adapter/device-adapter-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/device-adapter/device-adapter-api/pom.xml -------------------------------------------------------------------------------- /device-adapter/docs/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/device-adapter/docs/overview.png -------------------------------------------------------------------------------- /device-adapter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/device-adapter/pom.xml -------------------------------------------------------------------------------- /docker-compose-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docker-compose-build.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/MyFirstModel_1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docker/MyFirstModel_1.0.0.zip -------------------------------------------------------------------------------- /docker/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docker/Readme.md -------------------------------------------------------------------------------- /docker/Repository_Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docker/Repository_Dockerfile -------------------------------------------------------------------------------- /docker/config/3rd-party-generators/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docker/config/3rd-party-generators/Readme.md -------------------------------------------------------------------------------- /docker/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docker/config/application.yml -------------------------------------------------------------------------------- /docker/config/generators/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docker/config/generators/Readme.md -------------------------------------------------------------------------------- /docker/config/repository/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docker/config/repository/Readme.md -------------------------------------------------------------------------------- /docker/config/vorto-repository-config-mysql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docker/config/vorto-repository-config-mysql.json -------------------------------------------------------------------------------- /docker/docker_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docker/docker_push -------------------------------------------------------------------------------- /docker/docs/import_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docker/docs/import_highlight.png -------------------------------------------------------------------------------- /docker/docs/import_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docker/docs/import_view.png -------------------------------------------------------------------------------- /docker/docs/inital_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docker/docs/inital_view.png -------------------------------------------------------------------------------- /docker/mysql_spring.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docker/mysql_spring.yml -------------------------------------------------------------------------------- /docker/scripts/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docker/scripts/run.py -------------------------------------------------------------------------------- /docker/scripts/wait-for-it.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docker/scripts/wait-for-it.sh -------------------------------------------------------------------------------- /docker/vorto-variables.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docker/vorto-variables.env -------------------------------------------------------------------------------- /docs/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/community.md -------------------------------------------------------------------------------- /docs/gettingstarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/gettingstarted.md -------------------------------------------------------------------------------- /docs/images/Vorto_MetaModel.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/Vorto_MetaModel.jpeg -------------------------------------------------------------------------------- /docs/images/add_oath_client/add_client_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/add_oath_client/add_client_1.png -------------------------------------------------------------------------------- /docs/images/add_oath_client/add_client_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/add_oath_client/add_client_2.png -------------------------------------------------------------------------------- /docs/images/add_oath_client/add_client_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/add_oath_client/add_client_3.png -------------------------------------------------------------------------------- /docs/images/add_oath_client/add_client_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/add_oath_client/add_client_4.png -------------------------------------------------------------------------------- /docs/images/add_oath_client/add_client_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/add_oath_client/add_client_5.png -------------------------------------------------------------------------------- /docs/images/getting-started-ar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/getting-started-ar2.png -------------------------------------------------------------------------------- /docs/images/help_dsl_elements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/help_dsl_elements.png -------------------------------------------------------------------------------- /docs/images/import_model_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/import_model_success.png -------------------------------------------------------------------------------- /docs/images/m2m_tc_vrm_software_updates_restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/m2m_tc_vrm_software_updates_restart.png -------------------------------------------------------------------------------- /docs/images/model_import_single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/model_import_single.png -------------------------------------------------------------------------------- /docs/images/model_upload_validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/model_upload_validation.png -------------------------------------------------------------------------------- /docs/images/payloadmapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/payloadmapping.png -------------------------------------------------------------------------------- /docs/images/release_notes/0.10.0-m2/webeditor_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/release_notes/0.10.0-m2/webeditor_details.png -------------------------------------------------------------------------------- /docs/images/release_notes/0.9.x/vorto_features_cli_tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/release_notes/0.9.x/vorto_features_cli_tool.png -------------------------------------------------------------------------------- /docs/images/release_notes/0.9.x/vorto_features_models.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/release_notes/0.9.x/vorto_features_models.png -------------------------------------------------------------------------------- /docs/images/release_notes/0.9.x/vorto_repository_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/release_notes/0.9.x/vorto_repository_search.png -------------------------------------------------------------------------------- /docs/images/run_java.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/run_java.PNG -------------------------------------------------------------------------------- /docs/images/tutorials/connect_alexa/alexa-add-SkillID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/connect_alexa/alexa-add-SkillID.png -------------------------------------------------------------------------------- /docs/images/tutorials/connect_alexa/alexa-add-intent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/connect_alexa/alexa-add-intent.png -------------------------------------------------------------------------------- /docs/images/tutorials/connect_alexa/alexa-add-lambdajs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/connect_alexa/alexa-add-lambdajs.png -------------------------------------------------------------------------------- /docs/images/tutorials/connect_alexa/alexa-add-skill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/connect_alexa/alexa-add-skill.png -------------------------------------------------------------------------------- /docs/images/tutorials/connect_alexa/alexa-generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/connect_alexa/alexa-generator.png -------------------------------------------------------------------------------- /docs/images/tutorials/connect_alexa/alexa-getStarted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/connect_alexa/alexa-getStarted.png -------------------------------------------------------------------------------- /docs/images/tutorials/connect_alexa/alexa-skill-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/connect_alexa/alexa-skill-config.png -------------------------------------------------------------------------------- /docs/images/tutorials/connect_alexa/alexa-skillset-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/connect_alexa/alexa-skillset-id.png -------------------------------------------------------------------------------- /docs/images/tutorials/connect_alexa/alexa-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/connect_alexa/alexa-test.png -------------------------------------------------------------------------------- /docs/images/tutorials/connect_alexa/browse_xdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/connect_alexa/browse_xdk.png -------------------------------------------------------------------------------- /docs/images/tutorials/connect_esp8266/arduino_generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/connect_esp8266/arduino_generator.png -------------------------------------------------------------------------------- /docs/images/tutorials/connect_esp8266/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/connect_esp8266/cover.png -------------------------------------------------------------------------------- /docs/images/tutorials/connect_esp8266/mqtt-cert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/connect_esp8266/mqtt-cert.png -------------------------------------------------------------------------------- /docs/images/tutorials/connect_grovepi/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/connect_grovepi/cover.png -------------------------------------------------------------------------------- /docs/images/tutorials/connect_grovepi/postman_json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/connect_grovepi/postman_json.png -------------------------------------------------------------------------------- /docs/images/tutorials/connect_grovepi/python-generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/connect_grovepi/python-generator.png -------------------------------------------------------------------------------- /docs/images/tutorials/connect_java/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/connect_java/cover.png -------------------------------------------------------------------------------- /docs/images/tutorials/connect_java/java_generator.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/connect_java/java_generator.PNG -------------------------------------------------------------------------------- /docs/images/tutorials/create_openapi/generate_openAPI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/create_openapi/generate_openAPI.png -------------------------------------------------------------------------------- /docs/images/tutorials/create_openapi/openAPI_plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/create_openapi/openAPI_plugin.png -------------------------------------------------------------------------------- /docs/images/tutorials/create_openapi/openAPI_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/create_openapi/openAPI_view.png -------------------------------------------------------------------------------- /docs/images/tutorials/create_repository/initial_screen.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/create_repository/initial_screen.PNG -------------------------------------------------------------------------------- /docs/images/tutorials/create_thing/bearer_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/create_thing/bearer_token.png -------------------------------------------------------------------------------- /docs/images/tutorials/create_thing/code_generators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/create_thing/code_generators.png -------------------------------------------------------------------------------- /docs/images/tutorials/create_thing/import_jspm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/create_thing/import_jspm.png -------------------------------------------------------------------------------- /docs/images/tutorials/create_thing/oauth2_client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/create_thing/oauth2_client.png -------------------------------------------------------------------------------- /docs/images/tutorials/create_thing/popup.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/create_thing/popup.PNG -------------------------------------------------------------------------------- /docs/images/tutorials/create_thing/pre_requeset_script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/create_thing/pre_requeset_script.png -------------------------------------------------------------------------------- /docs/images/tutorials/create_thing/provision_device_dl.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/create_thing/provision_device_dl.PNG -------------------------------------------------------------------------------- /docs/images/tutorials/create_thing/raspbi_IM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/create_thing/raspbi_IM.png -------------------------------------------------------------------------------- /docs/images/tutorials/create_thing/service_isntance_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/create_thing/service_isntance_id.png -------------------------------------------------------------------------------- /docs/images/tutorials/decouple_tutorial/mappingEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/decouple_tutorial/mappingEditor.png -------------------------------------------------------------------------------- /docs/images/tutorials/decouple_tutorial/normalized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/decouple_tutorial/normalized.png -------------------------------------------------------------------------------- /docs/images/tutorials/decouple_tutorial/openapi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/decouple_tutorial/openapi.png -------------------------------------------------------------------------------- /docs/images/tutorials/decouple_tutorial/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/decouple_tutorial/overview.png -------------------------------------------------------------------------------- /docs/images/tutorials/decouple_tutorial/overview2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/decouple_tutorial/overview2.jpg -------------------------------------------------------------------------------- /docs/images/tutorials/decouple_tutorial/provisionThing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/decouple_tutorial/provisionThing.png -------------------------------------------------------------------------------- /docs/images/tutorials/decouple_tutorial/registerThing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/decouple_tutorial/registerThing.png -------------------------------------------------------------------------------- /docs/images/tutorials/decouple_tutorial/stepOneOverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/decouple_tutorial/stepOneOverview.png -------------------------------------------------------------------------------- /docs/images/tutorials/decouple_tutorial/stepTwoOverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/decouple_tutorial/stepTwoOverview.png -------------------------------------------------------------------------------- /docs/images/tutorials/describe_device_eclipseide/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/describe_device_eclipseide/export.png -------------------------------------------------------------------------------- /docs/images/tutorials/integrate_kinesis/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/integrate_kinesis/cover.png -------------------------------------------------------------------------------- /docs/images/tutorials/integrate_kinesis/sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/integrate_kinesis/sql.png -------------------------------------------------------------------------------- /docs/images/tutorials/payload_mapping/edit_mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/payload_mapping/edit_mapping.png -------------------------------------------------------------------------------- /docs/images/tutorials/payload_mapping/edit_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/payload_mapping/edit_model.png -------------------------------------------------------------------------------- /docs/images/tutorials/registerdevice/step_4_deviceid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/registerdevice/step_4_deviceid.png -------------------------------------------------------------------------------- /docs/images/tutorials/registerdevice/summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/registerdevice/summary.png -------------------------------------------------------------------------------- /docs/images/tutorials/springbootApp/angularJS_gen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/springbootApp/angularJS_gen.png -------------------------------------------------------------------------------- /docs/images/tutorials/springbootApp/browse_xdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/springbootApp/browse_xdk.png -------------------------------------------------------------------------------- /docs/images/tutorials/springbootApp/copy_SubjectId.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/springbootApp/copy_SubjectId.png -------------------------------------------------------------------------------- /docs/images/tutorials/springbootApp/create_policy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/springbootApp/create_policy.png -------------------------------------------------------------------------------- /docs/images/tutorials/springbootApp/edit_values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/springbootApp/edit_values.png -------------------------------------------------------------------------------- /docs/images/tutorials/springbootApp/featureID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/springbootApp/featureID.png -------------------------------------------------------------------------------- /docs/images/tutorials/springbootApp/login_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/springbootApp/login_page.png -------------------------------------------------------------------------------- /docs/images/tutorials/springbootApp/subject_ID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/springbootApp/subject_ID.png -------------------------------------------------------------------------------- /docs/images/tutorials/springbootApp/thing_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/springbootApp/thing_details.png -------------------------------------------------------------------------------- /docs/images/tutorials/springbootApp/thing_features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/springbootApp/thing_features.png -------------------------------------------------------------------------------- /docs/images/tutorials/springbootApp/thing_put_param.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/springbootApp/thing_put_param.png -------------------------------------------------------------------------------- /docs/images/tutorials/springbootApp/thing_rest_api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/springbootApp/thing_rest_api.png -------------------------------------------------------------------------------- /docs/images/tutorials/springbootApp/web_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/springbootApp/web_app.png -------------------------------------------------------------------------------- /docs/images/tutorials/springbootApp/xdk_thing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/springbootApp/xdk_thing.png -------------------------------------------------------------------------------- /docs/images/tutorials/tisensor/tisensor_create_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/tisensor/tisensor_create_model.png -------------------------------------------------------------------------------- /docs/images/tutorials/tisensor/tisensor_lifecycle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/tisensor/tisensor_lifecycle.jpg -------------------------------------------------------------------------------- /docs/images/tutorials/tisensor/tisensor_model_specs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/tisensor/tisensor_model_specs.png -------------------------------------------------------------------------------- /docs/images/tutorials/vorto_dashboard/configJson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/vorto_dashboard/configJson.png -------------------------------------------------------------------------------- /docs/images/tutorials/vorto_dashboard/download_UI.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/vorto_dashboard/download_UI.PNG -------------------------------------------------------------------------------- /docs/images/tutorials/vorto_dashboard/namespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/vorto_dashboard/namespace.png -------------------------------------------------------------------------------- /docs/images/tutorials/vorto_dashboard/oauth_client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/tutorials/vorto_dashboard/oauth_client.png -------------------------------------------------------------------------------- /docs/images/vorto_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/vorto_cover.png -------------------------------------------------------------------------------- /docs/images/vorto_hono_kinesis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/vorto_hono_kinesis.png -------------------------------------------------------------------------------- /docs/images/vortolang-meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/images/vortolang-meta.png -------------------------------------------------------------------------------- /docs/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/release-notes.md -------------------------------------------------------------------------------- /docs/samplecode/cloudapp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/samplecode/cloudapp/pom.xml -------------------------------------------------------------------------------- /docs/samplecode/cloudapp/src/main/resources/log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/samplecode/cloudapp/src/main/resources/log4j2.xml -------------------------------------------------------------------------------- /docs/specs/vorto_generator_plugin-2.0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/specs/vorto_generator_plugin-2.0.yml -------------------------------------------------------------------------------- /docs/specs/vorto_importer_plugin-2.0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/specs/vorto_importer_plugin-2.0.yml -------------------------------------------------------------------------------- /docs/specs/vorto_repository-1.0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/specs/vorto_repository-1.0.yml -------------------------------------------------------------------------------- /docs/tutorials/add_oath_client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/tutorials/add_oath_client.md -------------------------------------------------------------------------------- /docs/tutorials/adding_jwt_token_verification_provider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/tutorials/adding_jwt_token_verification_provider.md -------------------------------------------------------------------------------- /docs/tutorials/connect_esp8266.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/tutorials/connect_esp8266.md -------------------------------------------------------------------------------- /docs/tutorials/connect_javadevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/tutorials/connect_javadevice.md -------------------------------------------------------------------------------- /docs/tutorials/create_mapping_pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/tutorials/create_mapping_pipeline.md -------------------------------------------------------------------------------- /docs/tutorials/create_openapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/tutorials/create_openapi.md -------------------------------------------------------------------------------- /docs/tutorials/create_thing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/tutorials/create_thing.md -------------------------------------------------------------------------------- /docs/tutorials/create_webapp_dashboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/tutorials/create_webapp_dashboard.md -------------------------------------------------------------------------------- /docs/tutorials/describe_device-in-5min.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/tutorials/describe_device-in-5min.md -------------------------------------------------------------------------------- /docs/tutorials/describe_device_with_eclipse_ide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/tutorials/describe_device_with_eclipse_ide.md -------------------------------------------------------------------------------- /docs/tutorials/describe_tisensor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/tutorials/describe_tisensor.md -------------------------------------------------------------------------------- /docs/tutorials/functionblock_mapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/tutorials/functionblock_mapping.md -------------------------------------------------------------------------------- /docs/tutorials/integrate_aws_kinesis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/tutorials/integrate_aws_kinesis.md -------------------------------------------------------------------------------- /docs/tutorials/managing_collaborators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/tutorials/managing_collaborators.md -------------------------------------------------------------------------------- /docs/tutorials/managing_namespaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/tutorials/managing_namespaces.md -------------------------------------------------------------------------------- /docs/tutorials/model_comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/tutorials/model_comments.md -------------------------------------------------------------------------------- /docs/tutorials/mqtt-python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/tutorials/mqtt-python.md -------------------------------------------------------------------------------- /docs/tutorials/publishing_models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/tutorials/publishing_models.md -------------------------------------------------------------------------------- /docs/tutorials/requesting_access_to_a_namespace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/tutorials/requesting_access_to_a_namespace.md -------------------------------------------------------------------------------- /docs/vortolang-1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/docs/vortolang-1.0.md -------------------------------------------------------------------------------- /eclipse-java-vorto-style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/eclipse-java-vorto-style.xml -------------------------------------------------------------------------------- /generators/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/generators/Readme.md -------------------------------------------------------------------------------- /generators/generator-boschiotsuite/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/generators/generator-boschiotsuite/Readme.md -------------------------------------------------------------------------------- /generators/generator-boschiotsuite/boschiotsuite-cloud/src/main/resources/build.version: -------------------------------------------------------------------------------- 1 | ${project.version} 2 | -------------------------------------------------------------------------------- /generators/generator-boschiotsuite/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/generators/generator-boschiotsuite/pom.xml -------------------------------------------------------------------------------- /generators/generator-eclipseditto/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/generators/generator-eclipseditto/Readme.md -------------------------------------------------------------------------------- /generators/generator-eclipseditto/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/generators/generator-eclipseditto/pom.xml -------------------------------------------------------------------------------- /generators/generator-eclipseditto/src/main/resources/build.version: -------------------------------------------------------------------------------- 1 | ${project.version} 2 | -------------------------------------------------------------------------------- /generators/generator-eclipsehono/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/generators/generator-eclipsehono/Readme.md -------------------------------------------------------------------------------- /generators/generator-eclipsehono/hono-arduino/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/generators/generator-eclipsehono/hono-arduino/Readme.md -------------------------------------------------------------------------------- /generators/generator-eclipsehono/hono-arduino/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/generators/generator-eclipsehono/hono-arduino/pom.xml -------------------------------------------------------------------------------- /generators/generator-eclipsehono/hono-java/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/generators/generator-eclipsehono/hono-java/Readme.md -------------------------------------------------------------------------------- /generators/generator-eclipsehono/hono-java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/generators/generator-eclipsehono/hono-java/pom.xml -------------------------------------------------------------------------------- /generators/generator-eclipsehono/hono-python/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/generators/generator-eclipsehono/hono-python/Readme.md -------------------------------------------------------------------------------- /generators/generator-eclipsehono/hono-python/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/generators/generator-eclipsehono/hono-python/pom.xml -------------------------------------------------------------------------------- /generators/generator-eclipsehono/hono/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/generators/generator-eclipsehono/hono/pom.xml -------------------------------------------------------------------------------- /generators/generator-eclipsehono/hono/src/main/resources/build.version: -------------------------------------------------------------------------------- 1 | ${project.version} 2 | -------------------------------------------------------------------------------- /generators/generator-eclipsehono/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/generators/generator-eclipsehono/pom.xml -------------------------------------------------------------------------------- /generators/generator-jsonschema/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /generators/generator-jsonschema/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/generators/generator-jsonschema/pom.xml -------------------------------------------------------------------------------- /generators/generator-jsonschema/src/main/resources/build.version: -------------------------------------------------------------------------------- 1 | ${project.version} 2 | -------------------------------------------------------------------------------- /generators/generator-lambda/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/generators/generator-lambda/Readme.md -------------------------------------------------------------------------------- /generators/generator-lambda/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/generators/generator-lambda/pom.xml -------------------------------------------------------------------------------- /generators/generator-lambda/sam-local.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/generators/generator-lambda/sam-local.template -------------------------------------------------------------------------------- /generators/generator-openapi/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /generators/generator-openapi/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/generators/generator-openapi/Readme.md -------------------------------------------------------------------------------- /generators/generator-openapi/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/generators/generator-openapi/pom.xml -------------------------------------------------------------------------------- /generators/generator-openapi/src/main/resources/build.version: -------------------------------------------------------------------------------- 1 | ${project.version} 2 | -------------------------------------------------------------------------------- /generators/generator-runner/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/generators/generator-runner/Readme.md -------------------------------------------------------------------------------- /generators/generator-runner/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/generators/generator-runner/pom.xml -------------------------------------------------------------------------------- /generators/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/generators/pom.xml -------------------------------------------------------------------------------- /google_checks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/google_checks.xml -------------------------------------------------------------------------------- /jacoco-coverage/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/jacoco-coverage/pom.xml -------------------------------------------------------------------------------- /license-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/license-header.txt -------------------------------------------------------------------------------- /mapping-engine-nodejs/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine-nodejs/.gitattributes -------------------------------------------------------------------------------- /mapping-engine-nodejs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine-nodejs/.gitignore -------------------------------------------------------------------------------- /mapping-engine-nodejs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine-nodejs/LICENSE.txt -------------------------------------------------------------------------------- /mapping-engine-nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine-nodejs/README.md -------------------------------------------------------------------------------- /mapping-engine-nodejs/disclaimer_licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine-nodejs/disclaimer_licenses.txt -------------------------------------------------------------------------------- /mapping-engine-nodejs/images/create_mapping_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine-nodejs/images/create_mapping_key.png -------------------------------------------------------------------------------- /mapping-engine-nodejs/images/custom_function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine-nodejs/images/custom_function.png -------------------------------------------------------------------------------- /mapping-engine-nodejs/images/download_spec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine-nodejs/images/download_spec.png -------------------------------------------------------------------------------- /mapping-engine-nodejs/images/information_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine-nodejs/images/information_model.png -------------------------------------------------------------------------------- /mapping-engine-nodejs/images/mapping_editor_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine-nodejs/images/mapping_editor_test.png -------------------------------------------------------------------------------- /mapping-engine-nodejs/images/specify_mapping_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine-nodejs/images/specify_mapping_key.png -------------------------------------------------------------------------------- /mapping-engine-nodejs/images/xpath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine-nodejs/images/xpath.png -------------------------------------------------------------------------------- /mapping-engine-nodejs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine-nodejs/package-lock.json -------------------------------------------------------------------------------- /mapping-engine-nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine-nodejs/package.json -------------------------------------------------------------------------------- /mapping-engine-nodejs/vortoMappingEngine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine-nodejs/vortoMappingEngine.js -------------------------------------------------------------------------------- /mapping-engine/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/Readme.md -------------------------------------------------------------------------------- /mapping-engine/demo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/demo/pom.xml -------------------------------------------------------------------------------- /mapping-engine/demo/src/main/resources/mappingspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/demo/src/main/resources/mappingspec.json -------------------------------------------------------------------------------- /mapping-engine/docs/LoadTesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/docs/LoadTesting.md -------------------------------------------------------------------------------- /mapping-engine/docs/built_in_converters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/docs/built_in_converters.md -------------------------------------------------------------------------------- /mapping-engine/docs/create_mapping_spec_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/docs/create_mapping_spec_button.png -------------------------------------------------------------------------------- /mapping-engine/docs/create_new_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/docs/create_new_model.png -------------------------------------------------------------------------------- /mapping-engine/docs/create_new_model_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/docs/create_new_model_button.png -------------------------------------------------------------------------------- /mapping-engine/docs/custom_js_function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/docs/custom_js_function.png -------------------------------------------------------------------------------- /mapping-engine/docs/download_spec_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/docs/download_spec_button.png -------------------------------------------------------------------------------- /mapping-engine/docs/lookup_model_reference_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/docs/lookup_model_reference_button.png -------------------------------------------------------------------------------- /mapping-engine/docs/mapping_editor_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/docs/mapping_editor_test.png -------------------------------------------------------------------------------- /mapping-engine/docs/mapping_syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/docs/mapping_syntax.md -------------------------------------------------------------------------------- /mapping-engine/docs/model_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/docs/model_editor.png -------------------------------------------------------------------------------- /mapping-engine/docs/output_aws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/docs/output_aws.png -------------------------------------------------------------------------------- /mapping-engine/docs/output_canonical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/docs/output_canonical.png -------------------------------------------------------------------------------- /mapping-engine/docs/output_ditto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/docs/output_ditto.png -------------------------------------------------------------------------------- /mapping-engine/docs/search_function_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/docs/search_function_block.png -------------------------------------------------------------------------------- /mapping-engine/docs/target_platform_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/docs/target_platform_key.png -------------------------------------------------------------------------------- /mapping-engine/docs/vorto_mappings_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/docs/vorto_mappings_schema.png -------------------------------------------------------------------------------- /mapping-engine/docs/xpath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/docs/xpath.png -------------------------------------------------------------------------------- /mapping-engine/mapping-converter-binary/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/mapping-converter-binary/pom.xml -------------------------------------------------------------------------------- /mapping-engine/mapping-converter-date/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/mapping-converter-date/pom.xml -------------------------------------------------------------------------------- /mapping-engine/mapping-converter-javascript/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/mapping-converter-javascript/pom.xml -------------------------------------------------------------------------------- /mapping-engine/mapping-converter-string/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/mapping-converter-string/pom.xml -------------------------------------------------------------------------------- /mapping-engine/mapping-converter-types/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/mapping-converter-types/pom.xml -------------------------------------------------------------------------------- /mapping-engine/mapping-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/mapping-core/pom.xml -------------------------------------------------------------------------------- /mapping-engine/mapping-engine-all/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/mapping-engine-all/pom.xml -------------------------------------------------------------------------------- /mapping-engine/mapping-load-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/mapping-load-test/pom.xml -------------------------------------------------------------------------------- /mapping-engine/mapping-serializer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/mapping-serializer/pom.xml -------------------------------------------------------------------------------- /mapping-engine/mapping-targetplatform/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/mapping-targetplatform/pom.xml -------------------------------------------------------------------------------- /mapping-engine/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/mapping-engine/pom.xml -------------------------------------------------------------------------------- /model-conversion/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/model-conversion/pom.xml -------------------------------------------------------------------------------- /model-refactoring/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/model-refactoring/pom.xml -------------------------------------------------------------------------------- /model-refactoring/src/test/resources/dsls/Brightness.type: -------------------------------------------------------------------------------- 1 | vortolang 1.0 2 | 3 | namespace iot 4 | version 0.0.1 5 | 6 | enum Brightness { 7 | HIGH,LOW 8 | } -------------------------------------------------------------------------------- /model-refactoring/src/test/resources/dsls/Color.fbmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/model-refactoring/src/test/resources/dsls/Color.fbmodel -------------------------------------------------------------------------------- /model-refactoring/src/test/resources/dsls/Dimmer.type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/model-refactoring/src/test/resources/dsls/Dimmer.type -------------------------------------------------------------------------------- /model-refactoring/src/test/resources/dsls/Unit.type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/model-refactoring/src/test/resources/dsls/Unit.type -------------------------------------------------------------------------------- /model-runtime/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/model-runtime/pom.xml -------------------------------------------------------------------------------- /model/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/model/pom.xml -------------------------------------------------------------------------------- /model/src/main/java/org/eclipse/vorto/model/IModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/model/src/main/java/org/eclipse/vorto/model/IModel.java -------------------------------------------------------------------------------- /model/src/main/java/org/eclipse/vorto/model/ModelId.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/model/src/main/java/org/eclipse/vorto/model/ModelId.java -------------------------------------------------------------------------------- /model/src/main/java/org/eclipse/vorto/model/Param.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/model/src/main/java/org/eclipse/vorto/model/Param.java -------------------------------------------------------------------------------- /models/Repository_As_Editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/models/Repository_As_Editor.md -------------------------------------------------------------------------------- /models/com.bosch.bcds-XDK-2.0.0.infomodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2019, 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.bcds-XDK-2.0.0.infomodel/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/models/com.bosch.bcds-XDK-2.0.0.infomodel/image.png -------------------------------------------------------------------------------- /models/com.bosch.bcds-XDK-2.0.0.infomodel/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/models/com.bosch.bcds-XDK-2.0.0.infomodel/links.json -------------------------------------------------------------------------------- /models/com.bosch.bcds-XDK-2.0.0.infomodel/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/models/com.bosch.bcds-XDK-2.0.0.infomodel/model.json -------------------------------------------------------------------------------- /models/com.bosch.iot.suite-Bootstrapping-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-Configuration-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-Configuration-1.1.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-Configuration-1.2.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-Configuration-1.3.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-Container-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-Container-1.1.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-Container-1.2.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-Container-1.3.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-Container-1.4.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-Container-1.5.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-ContainerFactory-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-ContainerFactory-1.1.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-ContainerFactory-1.2.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-ContainerFactory-1.3.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-ContainerManifest-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH 2 | -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-ContainerManifest-1.1.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH 2 | -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-ContainerManifest-1.2.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 Bosch.IO GmbH 2 | -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-ContainerManifest-1.3.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 Bosch.IO GmbH 2 | -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-ContainerOrchestrator-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH 2 | -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-ContainerOrchestrator-1.1.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH 2 | -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-ContainerOrchestrator-1.2.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 Bosch.IO GmbH 2 | -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-ContainerOrchestrator-1.3.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 Bosch.IO GmbH 2 | -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-DecryptionConfiguration-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-Device-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-Error-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH 2 | -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-LogConfiguration-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-LogDriver-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-LogMode-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-Manifest-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH 2 | -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-Manifest-1.1.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH 2 | -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-Manifest-1.2.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 Bosch.IO GmbH 2 | -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-Manifest-1.3.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 Bosch.IO GmbH 2 | -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-ManifestState-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH 2 | -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-ManifestState-1.1.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH 2 | -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-ManifestState-1.2.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 Bosch.IO GmbH 2 | -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-ManifestState-1.3.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 Bosch.IO GmbH 2 | -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-ManifestStatus-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH 2 | -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-MountPoint-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-NetworkMode-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-PortMapping-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-PropagationMode-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-Resources-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-RestartPolicy-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-RestartPolicyType-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-State-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-State-1.1.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-Status-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-StopOptions-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-StopOptions-1.1.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-UpdateOptions-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.containers-UpdateOptions-1.1.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.metric-Filter-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 Bosch.IO GmbH 2 | -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.metric-Measurement-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 Bosch.IO GmbH 2 | -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.metric-Metrics-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 Bosch.IO GmbH 2 | -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.metric-OriginatorMeasurements-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 Bosch.IO GmbH 2 | -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services-Bundle-2.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services-BundleFactory-2.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services-BundleSoftwareUpdatable-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services-BundleState-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services-Configuration-2.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services-ConfigurationFactory-2.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.automation-AutomationAdmin-1.1.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.automation-Handler-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.automation-Handler_Type-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.automation-InputBinding-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.automation-InputBinding_Type-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.automation-Instruction-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.automation-ParameterMetadata-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.automation-ParameterMetadata_Type-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.automation-Rule-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.automation-RuleInfo-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.automation-RuleStatus-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.automation-RuleStatus_State-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.automation-Template-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.automation-TemplateInfo-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bacnet.da.items-BACnetDetector-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bacnet.da.items-BACnetDeviceInstances-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bacnet.da.items-BACnetDiscoveredDevice-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bacnet.da.items-BACnetDiscovery-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bacnet.da.items-BACnetDiscoveryParameters-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bacnet.da.items-BACnetEndpointConfigurator-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bacnet.da.items-BACnetMultiStateDetector-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bacnet.da.items-BACnetMultiStateSwitch-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bacnet.da.items-BACnetObject-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bacnet.da.items-BACnetObjectInstances-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bacnet.da.items-BACnetSensor-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bacnet.da.items-BACnetSetpoint-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bacnet.da.items-BACnetStatusFlags-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bacnet.da.items-BACnetSwitch-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bluetooth.le.da.items-Authentication-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bluetooth.le.da.items-AuthenticationEvent-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bluetooth.le.da.items-AuthenticationEvent_Type-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bluetooth.le.da.items-BleDevice-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bluetooth.le.da.items-BleDevice_BleDeviceState-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.ciss-DataControl-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.ciss-DataControl_Frequency-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.ciss-EventDetectionConfiguration-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.ciss-EventDetectionService-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.ciss-I40Service-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.scd-BulkDataTransfer-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.scd-BulkDataTransfer_Status-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.scd-ScdSettings-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.scd-SelfTestResults-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.scd-ShortTermExperiment-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.scd-SteConfiguration-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.scd-SteConfiguration_AccelerometerSensorOdr-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.scd-SteConfiguration_LightSensorOdr-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.scd-SteResults-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.tdl-AlgoThresholds-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.tdl-BulkDataTransfer-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.tdl-BulkDataTransfer_Status-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.tdl-EnvironmentalThresholds-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.tdl-LoggingSummary-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.tdl-SystemConfigurations-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.tdl-TimeSummary-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.bluetooth.le.da.items.bcds.tdl-UserpageService-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.cameras.da.items-BasicHTTPActuator-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.cameras.da.items-Configuration-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.cameras.da.items-ImageProvider-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.cameras.da.items-MoveActuator-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.cameras.da.items-PresetsProvider-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.cameras.da.items-ProfilesProvider-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.cameras.da.items-Record-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.cameras.da.items-RecordActuator-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.cameras.da.items-StorageInfo-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.cameras.da.items-VideoProvider-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.cameras.da.items-ZoomActuator-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da-AdapterInfo-1.0.1.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da-AdapterInfo-1.0.2.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da-AdapterOperation-0.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da-AdapterOperation-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da-Device-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da-Device-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da-DeviceAdmin-1.1.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da-DeviceAdmin-1.1.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da-DeviceDescriptor-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da-DeviceError-1.0.1.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da-DeviceItemDescriptor-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da-DeviceStatus-0.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da-DeviceStatus-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da-RemoveArgument-0.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da-RemoveArgument-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items-Actuator-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items-Detector-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items-KeyInput-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items-KeyInput-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items-KeyInputAction-0.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items-KeyInputAction-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items-KeyInputEvent-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items-KeyInputEvent-1.0.1.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items-Opener-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items-Opener-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items-OpenerState-0.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items-OpenerState-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items-Range-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items-Sensor-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items-Setpoint-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items-Switch-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items-TransitionActuator-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items-TransitionActuator-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items.maintenance-Discovery-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items.maintenance-FactoryReset-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items.maintenance-FirmwareUpdate-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items.maintenance-FirmwareUpdate-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items.maintenance-FirmwareUpdateState-0.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items.maintenance-FirmwareUpdateState-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items.maintenance-FirmwareUpdateStatus-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items.maintenance-FirmwareUpdateStatus-1.0.1.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items.maintenance-PowerSave-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items.whitegoods-Appliance-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items.whitegoods-Appliance-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items.whitegoods-ApplianceState-0.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items.whitegoods-ApplianceState-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items.whitegoods-Program-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.da.items.whitegoods-ProgramSelector-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.dect.da.items-DectDiscovery-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.fim-FunctionalItem-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.fim-FunctionalItemFactory-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.fim-Number-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.fim.backup-BackupAdmin-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.fim.data-FunctionalItemObject-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.fim.groups-Group-1.1.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.fim.groups-GroupAdmin-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.history-HistoryAdmin-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.history-HistoryEntry-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.history-HistoryQuery-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.history-HistoryQuery_Order-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.history.config-HistoryConfiguration-1.1.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.history.config-HistoryConfigurationAdmin-1.1.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.homeconnect.da.items-BeanAmount-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.homeconnect.da.items-BeanAmountControl-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.homeconnect.da.items-CleaningMode-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.homeconnect.da.items-CleaningModeControl-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.homeconnect.da.items-CoffeeTemperature-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.homeconnect.da.items-CoffeeTemperatureControl-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.homeconnect.da.items-DryingTarget-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.homeconnect.da.items-DryingTargetControl-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.homeconnect.da.items-HCAuthorization-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.homeconnect.da.items-HCAuthorizationStatus-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.homeconnect.da.items-HCAuthorizationStatus_State-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.homeconnect.da.items-HCEvent-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.homeconnect.da.items-HCEventInfo-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.homeconnect.da.items-HCEventPresentState-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.homeconnect.da.items-MapControl-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.knx.da.items-DatapointConfig-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.knx.da.items-Date-1.0.1.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.knx.da.items-DateTimeFlags-1.0.1.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.knx.da.items-KnxBlinds-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.knx.da.items-KnxDateControl-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.knx.da.items-KnxDateTimeControl-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.knx.da.items-KnxTimeControl-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.knx.da.items-Time-1.0.1.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.onvif.da.items-DeviceService-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.onvif.da.items-OnvifDiscovery-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.onvif.da.items-OnvifDiscoveryDevice-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.onvif.da.items-SecureConnection-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.onvif.da.items.media-MediaService-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.onvif.da.items.ptz-PanTilt-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.onvif.da.items.ptz-PtzPreset-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.onvif.da.items.ptz-PtzService-2.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.onvif.da.items.ptz-PtzStatus-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.onvif.da.items.ptz-PtzStatus_MoveStatus-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.onvif.da.items.ptz-Zoom-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.things.agent.items.osgi.bundle-Bundle-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.things.agent.items.osgi.bundle-BundleFactory-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.things.agent.items.osgi.bundle-BundleItem_State-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.things.agent.items.osgi.cm-Configuration-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.things.agent.items.osgi.cm-ConfigurationFactory-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.things.agent.items.osgi.framework-FrameworkManagement-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.units-Quantity-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.units-Unit-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items-Diagnostics-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items-Diagnostics_Attribute-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items-FanControl-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items-FanControl_Mode-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items-FanControl_ModeSequence-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items-IASWarning-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items-IASWarning_Level-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items-IASWarning_SquawkMode-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items-IASWarning_WarningMode-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items-IASZoneConfiguration-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items-Identifier-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items-Neighbor-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items-Neighbor_ReceiverState-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items-Neighbor_Relationship-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items-OnOffSwitchConfiguration-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items-OnOffSwitchConfiguration_Action-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items-OnOffSwitchConfiguration_Type-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items-Reporting-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items-ReportingConfiguration-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items-ReportingStatus-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items-RouterNeighborTable-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items-ThermostatUIConfiguration-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items-ThermostatUIConfiguration_DisplayMode-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items-ThermostatUIConfiguration_KeypadLockout-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items-TimeControl-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items-ZigBeeAlarm-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items-ZigBeeAlarms-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items-ZigBeeController-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items-ZigBeeDiscovery-1.0.2.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items-ZigBeeFirmwareUpdate-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items-ZigBeePowerSave-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items.ha-Door-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items.ha-Door_State-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items.ha-Lock-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items.ha-Lock_State-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items.ha-Thermostat-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items.ha-Thermostat_ControlMode-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items.ha-Thermostat_RunningMode-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items.ha-Thermostat_RunningStateBit-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items.ha-Thermostat_SystemMode-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items.ll-ColorMode-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zigbee.da.items.ll-ColorMode_Mode-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-Alarm-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-AlarmV2-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-Association-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-Basic-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-BasicV2-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-ClimateControlSchedule-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-Clock-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-ColorSwitch-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-ColorSwitch_Component-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-ColorSwitch_Direction-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-Configuration-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-Configuration_ParameterLength-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-DoorLock-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-DoorLockLogging-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-DoorLock_Handle-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-MeterReset-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-MultiChannelAssociation-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-NodeProvisioning-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-Notification-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-PowerLevel-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-PowerLevel_Level-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-Protection-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-ProtectionV2-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-ProtectionV2ExclusiveControl-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-ProtectionV2Timeout-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-Protection_State-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-SecurityClass-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-SoundSwitch-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-SoundSwitchV2-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-ThermostatFanMode-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-ThermostatFanState-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-ThermostatMode-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-ThermostatMode_Mode-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-ThermostatSetback-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-ThermostatState-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-UserCode-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-WakeUp-1.0.1.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-Weekday-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-ZWaveNetworkController-1.1.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-ZWaveNetworkController_Bandwidth-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-ZWaveNetworkController_CenterFrequency-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items-ZWaveNetworkController_Role-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data-AlarmStatus-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data-AlarmV2Status-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data-BasicV2Value-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data-ClockTime-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data-ColorValue-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data-DateTime-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data-DoorLockConfiguration-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data-DoorLockLogRecord-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data-DoorLockState-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data-IdToValueTuple-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data-NotificationStatus-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data-OverrideState-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data-PowerLevelTestResult-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data-PowerLevelValue-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data-ProtectionV2State-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data-SoundSwitchToneInfo-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data-SoundSwitchToneVolume-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data-SwitchPoint-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data-Time-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data-User-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data-UserStatus-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data-WakeUpIntervalCapabilities-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data.provisioning-AdvancedJoining-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data.provisioning-BootstrappingMode-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data.provisioning-InformationType-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data.provisioning-Location-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data.provisioning-MaxInclusionRequestInterval-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data.provisioning-Name-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data.provisioning-NetworkStatus-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data.provisioning-NodeEntry-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data.provisioning-ProductId-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data.provisioning-ProductType-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data.provisioning-QRCompatible-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data.provisioning-SmartStartInclusionSetting-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.services.zwave.da.items.data.provisioning-UUID16-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.update-Action-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2023 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.update-ActionStatusType-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2023 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.update-Association-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2023 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.update-Baseline-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2023 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.update-Component-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2023 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.update-ComponentWithConfig-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2023 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.update-DesiredState-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2023 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.update-DesiredStateFeedback-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2023 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.update-Domain-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2023 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.update-HardwareNode-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2023 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.update-Inventory-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2023 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.update-InventoryNode-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2023 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.update-KeyValuePair-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2023 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.update-SoftwareNode-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2023 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.update-SoftwareType-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2023 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.update-StatusType-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2023 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.update-UpdateManager-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2023 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.edge.vendor.nxp.frdm_k64f-FreedomK64F-1.0.0.infomodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.example.octopussuiteedition-Accelerometer-1.1.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2019, 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.example.octopussuiteedition-Altitude-1.1.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2019, 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.example.octopussuiteedition-Barometer-1.1.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2019, 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.example.octopussuiteedition-GenericSensor-1.1.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2019, 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.example.octopussuiteedition-Gyrometer-1.1.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2019, 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.example.octopussuiteedition-Humidity-1.1.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2019, 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.example.octopussuiteedition-LED-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2019, 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.example.octopussuiteedition-Magnetometer-1.1.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2019, 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.example.octopussuiteedition-MultipleAxisJoystick-1.1.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2019, 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.example.octopussuiteedition-OctopusSuiteEdition-1.0.0.infomodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2019, 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.example.octopussuiteedition-OctopusSuiteEdition-1.1.0.infomodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2019, 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.example.octopussuiteedition-Temperature-1.1.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2019, 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.example.octopussuiteedition-Voltage-1.1.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2019, 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.examples.geolocation-Geolocation-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2019, 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/com.bosch.iot.suite.examples.geolocation-Geoposition-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2019, 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.ditto-ConnectionStatus-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2019 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.ditto.examples-Color-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.ditto.examples-Colorable-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.ditto.examples-ColorableLamp-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.ditto.examples-Dimmable-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.ditto.examples-DimmableLamp-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.ditto.examples-Duration-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.ditto.examples-MightyLamp-1.0.0.infomodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.ditto.examples-MightyLamp-2.0.0.infomodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.ditto.examples-Priority-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.ditto.examples-SmokeDetector-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.ditto.examples-Switchable-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.ditto.examples-SwitchableLamp-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.ditto.examples-TimeUnit-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.ditto.examples.arduino-Direction-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 kaloyanam -------------------------------------------------------------------------------- /models/org.eclipse.ditto.examples.arduino-LED-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 kaloyanam -------------------------------------------------------------------------------- /models/org.eclipse.ditto.examples.arduino.carrier-Buzzer-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 kaloyanam -------------------------------------------------------------------------------- /models/org.eclipse.ditto.examples.arduino.carrier-ColoredDisplay-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 kaloyanam -------------------------------------------------------------------------------- /models/org.eclipse.ditto.examples.arduino.carrier-Gesture-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 kaloyanam -------------------------------------------------------------------------------- /models/org.eclipse.ditto.examples.arduino.carrier-LEDs-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 kaloyanam -------------------------------------------------------------------------------- /models/org.eclipse.ditto.examples.arduino.carrier-Light-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 kaloyanam -------------------------------------------------------------------------------- /models/org.eclipse.ditto.examples.arduino.connectivity-WiFi-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 kaloyanam -------------------------------------------------------------------------------- /models/org.eclipse.ditto.examples.arduino.connectivity.wifi-EncryptionProtocol-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 kaloyanam -------------------------------------------------------------------------------- /models/org.eclipse.ditto.examples.arduino.mkr-ArduinoMKR1000WiFi-1.0.0.infomodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 kaloyanam -------------------------------------------------------------------------------- /models/org.eclipse.ditto.examples.arduino.mkr-ArduinoMKRVidor4000-1.0.0.infomodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 kaloyanam -------------------------------------------------------------------------------- /models/org.eclipse.ditto.examples.arduino.mkr-ArduinoMKRWiFi1010-1.0.0.infomodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2022 kaloyanam -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit-ActionProperties-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit-ActionType-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit-DependencyDescription-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit-DependencyDescription-2.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit-Hash-2.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit-Hash-2.0.0.type/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/models/org.eclipse.hawkbit-Hash-2.0.0.type/model.json -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit-Hashes-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit-Hashes-1.0.0.type/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/models/org.eclipse.hawkbit-Hashes-1.0.0.type/model.json -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit-Links-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit-Links-1.0.0.type/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/models/org.eclipse.hawkbit-Links-1.0.0.type/model.json -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit-Links-2.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit-Links-2.0.0.type/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/models/org.eclipse.hawkbit-Links-2.0.0.type/model.json -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit-OperationStatus-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit-OperationStatus-2.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit-Protocol-2.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit-SoftwareArtifactAction-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit-SoftwareArtifactAction-2.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit-SoftwareDescription-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit-SoftwareModuleAction-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit-SoftwareModuleAction-2.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit-SoftwareModuleId-2.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit-SoftwareRemoveAction-2.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit-SoftwareUpdateAction-2.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit-Status-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit-Status-1.0.0.type/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/models/org.eclipse.hawkbit-Status-1.0.0.type/model.json -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit-Status-2.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit-Status-2.0.0.type/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/models/org.eclipse.hawkbit-Status-2.0.0.type/model.json -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit-UpdateAction-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit-Url-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit-Url-1.0.0.type/model.datatype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/models/org.eclipse.hawkbit-Url-1.0.0.type/model.datatype -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit-Url-1.0.0.type/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/models/org.eclipse.hawkbit-Url-1.0.0.type/model.json -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit.swmodule-SoftwareModule-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit.swupdatable-SoftwareUpdatable-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.hawkbit.swupdatable-SoftwareUpdatable-2.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2021 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto-Unit-1.0.1.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/models/org.eclipse.vorto-Unit-1.0.1.type/COPYRIGHT.txt -------------------------------------------------------------------------------- /models/org.eclipse.vorto-Unit-1.0.1.type/model.datatype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/models/org.eclipse.vorto-Unit-1.0.1.type/model.datatype -------------------------------------------------------------------------------- /models/org.eclipse.vorto-Unit-1.0.1.type/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/models/org.eclipse.vorto-Unit-1.0.1.type/model.json -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std-Location-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std-Location3D-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std-Value3D-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std.sensor-AccelerationSensor3D-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std.sensor-AcousticsSensor-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std.sensor-DistanceSensor-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std.sensor-HumiditySensor-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std.sensor-IlluminanceSensor-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std.sensor-LocationSensor-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std.sensor-LocationSensor3D-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std.sensor-LuminanceSensor-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std.sensor-MagneticFieldSensor3D-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std.sensor-PresenceSensor-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std.sensor-PressureSensor-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std.sensor-RotationSensor3D-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std.sensor-TemperatureSensor-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std.sensor-VoltageSensor-1.0.0.fbmodel/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std.unit-AccelerationUnit-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std.unit-AccelerationUnit-1.0.1.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std.unit-AcousticsUnit-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std.unit-DimensionlessUnit-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std.unit-ElectricPotentialDifferenceUnit-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std.unit-IlluminanceUnit-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std.unit-LengthUnit-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std.unit-LuminanceUnit-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std.unit-LuminanceUnit-1.0.1.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std.unit-MagneticFluxDensityUnit-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std.unit-MagneticFluxDensityUnit-1.0.1.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std.unit-PressureUnit-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std.unit-RotationalSpeedUnit-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std.unit-RotationalSpeedUnit-1.0.1.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std.unit-TemperatureUnit-1.0.0.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /models/org.eclipse.vorto.std.unit-TemperatureUnit-1.0.1.type/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2020 Bosch.IO GmbH -------------------------------------------------------------------------------- /plugin-sdk/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/plugin-sdk/Readme.md -------------------------------------------------------------------------------- /plugin-sdk/plugin-api/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/plugin-sdk/plugin-api/Readme.md -------------------------------------------------------------------------------- /plugin-sdk/plugin-api/docs/generator-plugin-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/plugin-sdk/plugin-api/docs/generator-plugin-v2.png -------------------------------------------------------------------------------- /plugin-sdk/plugin-api/docs/importer-plugin-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/plugin-sdk/plugin-api/docs/importer-plugin-import.png -------------------------------------------------------------------------------- /plugin-sdk/plugin-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/plugin-sdk/plugin-api/pom.xml -------------------------------------------------------------------------------- /plugin-sdk/plugin-generator/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/plugin-sdk/plugin-generator/Readme.md -------------------------------------------------------------------------------- /plugin-sdk/plugin-generator/docs/generator-plugin-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/plugin-sdk/plugin-generator/docs/generator-plugin-v2.png -------------------------------------------------------------------------------- /plugin-sdk/plugin-generator/docs/generator-plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/plugin-sdk/plugin-generator/docs/generator-plugin.png -------------------------------------------------------------------------------- /plugin-sdk/plugin-generator/docs/repo_plugins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/plugin-sdk/plugin-generator/docs/repo_plugins.png -------------------------------------------------------------------------------- /plugin-sdk/plugin-generator/generator-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/plugin-sdk/plugin-generator/generator-api/pom.xml -------------------------------------------------------------------------------- /plugin-sdk/plugin-generator/generator-runner-spi/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/plugin-sdk/plugin-generator/generator-runner-spi/pom.xml -------------------------------------------------------------------------------- /plugin-sdk/plugin-generator/generator-template/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/plugin-sdk/plugin-generator/generator-template/pom.xml -------------------------------------------------------------------------------- /plugin-sdk/plugin-generator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/plugin-sdk/plugin-generator/pom.xml -------------------------------------------------------------------------------- /plugin-sdk/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/plugin-sdk/pom.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/pom.xml -------------------------------------------------------------------------------- /repository/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/Readme.md -------------------------------------------------------------------------------- /repository/docs/create_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/docs/create_model.md -------------------------------------------------------------------------------- /repository/docs/images/create_model_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/docs/images/create_model_dialog.png -------------------------------------------------------------------------------- /repository/docs/images/migrate_model/download_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/docs/images/migrate_model/download_image.png -------------------------------------------------------------------------------- /repository/docs/images/migrate_model/download_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/docs/images/migrate_model/download_model.png -------------------------------------------------------------------------------- /repository/docs/images/migrate_model/upload_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/docs/images/migrate_model/upload_image.png -------------------------------------------------------------------------------- /repository/docs/images/model_states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/docs/images/model_states.png -------------------------------------------------------------------------------- /repository/docs/images/model_version_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/docs/images/model_version_dialog.png -------------------------------------------------------------------------------- /repository/docs/import_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/docs/import_model.md -------------------------------------------------------------------------------- /repository/docs/model_states.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/docs/model_states.md -------------------------------------------------------------------------------- /repository/docs/model_versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/docs/model_versioning.md -------------------------------------------------------------------------------- /repository/migration/migrate_db_0xx_to_013_H2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/migration/migrate_db_0xx_to_013_H2.sql -------------------------------------------------------------------------------- /repository/migration/migrate_db_0xx_to_013_MariaDB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/migration/migrate_db_0xx_to_013_MariaDB.sql -------------------------------------------------------------------------------- /repository/migration/migrate_db_2018_11_09.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/migration/migrate_db_2018_11_09.sql -------------------------------------------------------------------------------- /repository/migration/migrate_db_createdby.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/migration/migrate_db_createdby.sql -------------------------------------------------------------------------------- /repository/migration/migration_0.11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/migration/migration_0.11.md -------------------------------------------------------------------------------- /repository/monitoring/urls.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/monitoring/urls.lst -------------------------------------------------------------------------------- /repository/monitoring/webmonitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/monitoring/webmonitor.sh -------------------------------------------------------------------------------- /repository/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/pom.xml -------------------------------------------------------------------------------- /repository/repository-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-api/pom.xml -------------------------------------------------------------------------------- /repository/repository-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-core/pom.xml -------------------------------------------------------------------------------- /repository/repository-core/src/main/resources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-core/src/main/resources/.gitignore -------------------------------------------------------------------------------- /repository/repository-editor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-editor/pom.xml -------------------------------------------------------------------------------- /repository/repository-elasticsearch/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-elasticsearch/Readme.md -------------------------------------------------------------------------------- /repository/repository-elasticsearch/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-elasticsearch/pom.xml -------------------------------------------------------------------------------- /repository/repository-java-client/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-java-client/Readme.md -------------------------------------------------------------------------------- /repository/repository-java-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-java-client/pom.xml -------------------------------------------------------------------------------- /repository/repository-java-client/sample/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-java-client/sample/input.json -------------------------------------------------------------------------------- /repository/repository-java-client/sample/invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-java-client/sample/invalid.json -------------------------------------------------------------------------------- /repository/repository-oauth-boschid/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-oauth-boschid/pom.xml -------------------------------------------------------------------------------- /repository/repository-oauth-eclipse/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-oauth-eclipse/pom.xml -------------------------------------------------------------------------------- /repository/repository-oauth-github/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-oauth-github/pom.xml -------------------------------------------------------------------------------- /repository/repository-server-config/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-server-config/pom.xml -------------------------------------------------------------------------------- /repository/repository-server/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-server/Readme.md -------------------------------------------------------------------------------- /repository/repository-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-server/pom.xml -------------------------------------------------------------------------------- /repository/repository-web/dist/css/comment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-web/dist/css/comment.css -------------------------------------------------------------------------------- /repository/repository-web/dist/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-web/dist/css/style.css -------------------------------------------------------------------------------- /repository/repository-web/dist/images/bosch-social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-web/dist/images/bosch-social.png -------------------------------------------------------------------------------- /repository/repository-web/dist/images/dt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-web/dist/images/dt.png -------------------------------------------------------------------------------- /repository/repository-web/dist/images/eclipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-web/dist/images/eclipse.png -------------------------------------------------------------------------------- /repository/repository-web/dist/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-web/dist/images/favicon.png -------------------------------------------------------------------------------- /repository/repository-web/dist/images/fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-web/dist/images/fb.png -------------------------------------------------------------------------------- /repository/repository-web/dist/images/functionblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-web/dist/images/functionblock.png -------------------------------------------------------------------------------- /repository/repository-web/dist/images/github-social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-web/dist/images/github-social.png -------------------------------------------------------------------------------- /repository/repository-web/dist/images/im.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-web/dist/images/im.png -------------------------------------------------------------------------------- /repository/repository-web/dist/images/infomodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-web/dist/images/infomodel.png -------------------------------------------------------------------------------- /repository/repository-web/dist/images/mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-web/dist/images/mapping.png -------------------------------------------------------------------------------- /repository/repository-web/dist/images/mappingspec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-web/dist/images/mappingspec.png -------------------------------------------------------------------------------- /repository/repository-web/dist/images/vortoLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-web/dist/images/vortoLogo.png -------------------------------------------------------------------------------- /repository/repository-web/dist/js/ace-modes/mode-type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-web/dist/js/ace-modes/mode-type.js -------------------------------------------------------------------------------- /repository/repository-web/dist/js/init/appController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-web/dist/js/init/appController.js -------------------------------------------------------------------------------- /repository/repository-web/dist/js/init/appDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-web/dist/js/init/appDirective.js -------------------------------------------------------------------------------- /repository/repository-web/dist/js/init/appService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-web/dist/js/init/appService.js -------------------------------------------------------------------------------- /repository/repository-web/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/repository-web/pom.xml -------------------------------------------------------------------------------- /repository/tests/jmeterTests/PlatformData_Thing.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/tests/jmeterTests/PlatformData_Thing.csv -------------------------------------------------------------------------------- /repository/tests/jmeterTests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/repository/tests/jmeterTests/pom.xml -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /utilities/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/utilities/Readme.md -------------------------------------------------------------------------------- /utilities/dsl-reader/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/utilities/dsl-reader/pom.xml -------------------------------------------------------------------------------- /utilities/dsl-reader/src/test/resources/dsls/Brightness.type: -------------------------------------------------------------------------------- 1 | vortolang 1.0 2 | 3 | namespace iot 4 | version 0.0.1 5 | 6 | enum Brightness { 7 | HIGH,LOW 8 | } -------------------------------------------------------------------------------- /utilities/dsl-reader/src/test/resources/dsls/Light.type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/utilities/dsl-reader/src/test/resources/dsls/Light.type -------------------------------------------------------------------------------- /utilities/dsl-reader/src/test/resources/mappings.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/utilities/dsl-reader/src/test/resources/mappings.zip -------------------------------------------------------------------------------- /utilities/dsl-reader/src/test/resources/models.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/utilities/dsl-reader/src/test/resources/models.zip -------------------------------------------------------------------------------- /utilities/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-vorto/vorto/HEAD/utilities/pom.xml --------------------------------------------------------------------------------