├── .github └── workflows │ ├── harp.yml.off │ └── mkdocs.yml ├── .gitignore ├── .nojekyll ├── AGENTS.md ├── docs-new ├── 404.md ├── additional-security-considerations.md ├── eclipse_lyo │ ├── designer │ │ └── advanced │ │ │ └── manipulating-responses.md │ ├── domain-specification-modelling-workshop.md │ ├── eclipse-lyo.md │ ├── eclipse-setup-for-lyo-based-development.md │ ├── images │ │ ├── CreateMavenAdaptorProject_CodeStructure.png │ │ ├── CreateMavenAdaptorProject_Step1.png │ │ ├── CreateMavenAdaptorProject_Step2.png │ │ ├── CreateMavenAdaptorProject_Step3.png │ │ ├── Lyo-ToolchainModelValidation.png │ │ ├── LyoModels-ThreeInOne-P1.png │ │ ├── LyoModels-ThreeInOne-P2.png │ │ ├── LyoModels-ThreeInOne-P3.png │ │ ├── LyoModels-ThreeInOne.png │ │ ├── LyoToolchainModel-AdaptorInterfaceDiagram.png │ │ ├── LyoToolchainModel-SpecificationDiagram.png │ │ ├── LyoToolchainModel-ToolchainDiagram.png │ │ └── OSLCToolAdaptorMetalModel.png │ ├── install-lyo-designer.md │ ├── lyo-as-osgi-bundles.md │ ├── lyo-core-internals.md │ ├── lyo-designer.md │ ├── migration-2x-4x.md │ ├── migration-4x-5x.md │ ├── migration-5x-6x.md │ ├── migration-6x-7x.md │ ├── migration-overview.md │ ├── modelling-howto.md │ ├── setup-an-oslc-provider-consumer-application.md │ └── toolchain-modelling-workshop.md ├── img │ ├── OSLC4JS-schematic.png │ ├── logo-new-big.png │ ├── logo-new-mobile.png │ ├── logo-old-50px.png │ ├── logo-old-big.gif │ ├── logo-old.png │ ├── oslc-logo-400.png │ └── oslc-logo-white-100.png ├── index.md ├── integrating_products_with_oslc │ ├── implementing_an_oslc_provider │ │ ├── 1_0_implementing_a_provider.md │ │ ├── 1_1_planning_partial_cm_provider.md │ │ ├── 1_2_providing_service_resources.md │ │ ├── 1_3_intro_to_oslc4j.md │ │ ├── 1_4_ui_preview.md │ │ ├── 1_5_ui_selection.md │ │ ├── 1_6_ui_creation.md │ │ └── 1_7_factory.md │ ├── index.md │ ├── integrating_with_an_oslc_provider │ │ ├── 2_0_implementing_consumer.md │ │ ├── 2_1_consumer_use_cases.md │ │ ├── 2_2_links_and_previews.md │ │ ├── 2_3_delegatedUI.md │ │ ├── 2_4_notify_customers.md │ │ └── 2_5_automatic_bugs.md │ ├── integrating_with_oslc_tutorial.pdf │ ├── overview_of_oslc.md │ └── running_the_examples.md ├── iotp_adaptor │ ├── artifact-container-associations.md │ ├── authentication.md │ ├── code-generator.md │ ├── consumer-friend.md │ ├── developer-guide.md │ ├── dialogs.md │ ├── environment-setup.md │ ├── exploring-the-code.md │ ├── images │ │ ├── Bluemix-Domain.png │ │ ├── CE4IoTConnector.png │ │ ├── CRUD-Operations.png │ │ ├── CoreDiscovery.png │ │ ├── Creation-Dialogs.png │ │ ├── Creation-Factories.png │ │ ├── Device-BasicCapability.png │ │ ├── DeviceType-Creation-Factory.png │ │ ├── Generate-the-code.png │ │ ├── Generated-project.png │ │ ├── IoT-Platform-Domain.png │ │ ├── LQE-process-resources.png │ │ ├── Project-Dependencies.png │ │ ├── Query-Capability.png │ │ ├── Selection-Dialogs.png │ │ └── authenticating-with-oauth.png │ ├── implement-domain-class.md │ ├── index.md │ ├── junit-tests.md │ ├── rootservices.md │ ├── ssl-support.md │ ├── toolchain-model.md │ ├── trs-provider.md │ └── userGuide │ │ ├── administration.md │ │ ├── debug-interface.md │ │ ├── images │ │ ├── artifact-container-associations.png │ │ ├── bluemix-ontology.png │ │ ├── concepts-detailed.png │ │ ├── iot-and-bluemix-packages.png │ │ ├── iotp-ontology.png │ │ ├── link-requirement.png │ │ ├── preview-in-dng.png │ │ ├── sample-preview.png │ │ └── sample-selection-dialog.png │ │ ├── install-and-config.md │ │ ├── user-guide.md │ │ └── using.md ├── oslc-open-source-node-projects.md ├── sample-applications-and-code.md ├── services-resources-and-design-patterns.md ├── stylesheets │ └── extra.css ├── technical-foundations.md ├── tutorials.md └── why-develop-oslc-applications.md ├── fix-links.ps1 ├── misc ├── gov-uk-technical-content.md └── iso-house-guide.md ├── mkdocs.yml ├── overrides └── partials │ └── integrations │ └── analytics │ └── custom.html └── requirements.txt /.github/workflows/harp.yml.off: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/.github/workflows/harp.yml.off -------------------------------------------------------------------------------- /.github/workflows/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/.github/workflows/mkdocs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/.gitignore -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/AGENTS.md -------------------------------------------------------------------------------- /docs-new/404.md: -------------------------------------------------------------------------------- 1 | ## Nothing here! 2 | 3 | [Try the home page?](/developing-oslc-applications/) -------------------------------------------------------------------------------- /docs-new/additional-security-considerations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/additional-security-considerations.md -------------------------------------------------------------------------------- /docs-new/eclipse_lyo/designer/advanced/manipulating-responses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/eclipse_lyo/designer/advanced/manipulating-responses.md -------------------------------------------------------------------------------- /docs-new/eclipse_lyo/domain-specification-modelling-workshop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/eclipse_lyo/domain-specification-modelling-workshop.md -------------------------------------------------------------------------------- /docs-new/eclipse_lyo/eclipse-lyo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/eclipse_lyo/eclipse-lyo.md -------------------------------------------------------------------------------- /docs-new/eclipse_lyo/eclipse-setup-for-lyo-based-development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/eclipse_lyo/eclipse-setup-for-lyo-based-development.md -------------------------------------------------------------------------------- /docs-new/eclipse_lyo/images/CreateMavenAdaptorProject_CodeStructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/eclipse_lyo/images/CreateMavenAdaptorProject_CodeStructure.png -------------------------------------------------------------------------------- /docs-new/eclipse_lyo/images/CreateMavenAdaptorProject_Step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/eclipse_lyo/images/CreateMavenAdaptorProject_Step1.png -------------------------------------------------------------------------------- /docs-new/eclipse_lyo/images/CreateMavenAdaptorProject_Step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/eclipse_lyo/images/CreateMavenAdaptorProject_Step2.png -------------------------------------------------------------------------------- /docs-new/eclipse_lyo/images/CreateMavenAdaptorProject_Step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/eclipse_lyo/images/CreateMavenAdaptorProject_Step3.png -------------------------------------------------------------------------------- /docs-new/eclipse_lyo/images/Lyo-ToolchainModelValidation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/eclipse_lyo/images/Lyo-ToolchainModelValidation.png -------------------------------------------------------------------------------- /docs-new/eclipse_lyo/images/LyoModels-ThreeInOne-P1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/eclipse_lyo/images/LyoModels-ThreeInOne-P1.png -------------------------------------------------------------------------------- /docs-new/eclipse_lyo/images/LyoModels-ThreeInOne-P2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/eclipse_lyo/images/LyoModels-ThreeInOne-P2.png -------------------------------------------------------------------------------- /docs-new/eclipse_lyo/images/LyoModels-ThreeInOne-P3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/eclipse_lyo/images/LyoModels-ThreeInOne-P3.png -------------------------------------------------------------------------------- /docs-new/eclipse_lyo/images/LyoModels-ThreeInOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/eclipse_lyo/images/LyoModels-ThreeInOne.png -------------------------------------------------------------------------------- /docs-new/eclipse_lyo/images/LyoToolchainModel-AdaptorInterfaceDiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/eclipse_lyo/images/LyoToolchainModel-AdaptorInterfaceDiagram.png -------------------------------------------------------------------------------- /docs-new/eclipse_lyo/images/LyoToolchainModel-SpecificationDiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/eclipse_lyo/images/LyoToolchainModel-SpecificationDiagram.png -------------------------------------------------------------------------------- /docs-new/eclipse_lyo/images/LyoToolchainModel-ToolchainDiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/eclipse_lyo/images/LyoToolchainModel-ToolchainDiagram.png -------------------------------------------------------------------------------- /docs-new/eclipse_lyo/images/OSLCToolAdaptorMetalModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/eclipse_lyo/images/OSLCToolAdaptorMetalModel.png -------------------------------------------------------------------------------- /docs-new/eclipse_lyo/install-lyo-designer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/eclipse_lyo/install-lyo-designer.md -------------------------------------------------------------------------------- /docs-new/eclipse_lyo/lyo-as-osgi-bundles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/eclipse_lyo/lyo-as-osgi-bundles.md -------------------------------------------------------------------------------- /docs-new/eclipse_lyo/lyo-core-internals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/eclipse_lyo/lyo-core-internals.md -------------------------------------------------------------------------------- /docs-new/eclipse_lyo/lyo-designer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/eclipse_lyo/lyo-designer.md -------------------------------------------------------------------------------- /docs-new/eclipse_lyo/migration-2x-4x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/eclipse_lyo/migration-2x-4x.md -------------------------------------------------------------------------------- /docs-new/eclipse_lyo/migration-4x-5x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/eclipse_lyo/migration-4x-5x.md -------------------------------------------------------------------------------- /docs-new/eclipse_lyo/migration-5x-6x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/eclipse_lyo/migration-5x-6x.md -------------------------------------------------------------------------------- /docs-new/eclipse_lyo/migration-6x-7x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/eclipse_lyo/migration-6x-7x.md -------------------------------------------------------------------------------- /docs-new/eclipse_lyo/migration-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/eclipse_lyo/migration-overview.md -------------------------------------------------------------------------------- /docs-new/eclipse_lyo/modelling-howto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/eclipse_lyo/modelling-howto.md -------------------------------------------------------------------------------- /docs-new/eclipse_lyo/setup-an-oslc-provider-consumer-application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/eclipse_lyo/setup-an-oslc-provider-consumer-application.md -------------------------------------------------------------------------------- /docs-new/eclipse_lyo/toolchain-modelling-workshop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/eclipse_lyo/toolchain-modelling-workshop.md -------------------------------------------------------------------------------- /docs-new/img/OSLC4JS-schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/img/OSLC4JS-schematic.png -------------------------------------------------------------------------------- /docs-new/img/logo-new-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/img/logo-new-big.png -------------------------------------------------------------------------------- /docs-new/img/logo-new-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/img/logo-new-mobile.png -------------------------------------------------------------------------------- /docs-new/img/logo-old-50px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/img/logo-old-50px.png -------------------------------------------------------------------------------- /docs-new/img/logo-old-big.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/img/logo-old-big.gif -------------------------------------------------------------------------------- /docs-new/img/logo-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/img/logo-old.png -------------------------------------------------------------------------------- /docs-new/img/oslc-logo-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/img/oslc-logo-400.png -------------------------------------------------------------------------------- /docs-new/img/oslc-logo-white-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/img/oslc-logo-white-100.png -------------------------------------------------------------------------------- /docs-new/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/index.md -------------------------------------------------------------------------------- /docs-new/integrating_products_with_oslc/implementing_an_oslc_provider/1_0_implementing_a_provider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/integrating_products_with_oslc/implementing_an_oslc_provider/1_0_implementing_a_provider.md -------------------------------------------------------------------------------- /docs-new/integrating_products_with_oslc/implementing_an_oslc_provider/1_1_planning_partial_cm_provider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/integrating_products_with_oslc/implementing_an_oslc_provider/1_1_planning_partial_cm_provider.md -------------------------------------------------------------------------------- /docs-new/integrating_products_with_oslc/implementing_an_oslc_provider/1_2_providing_service_resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/integrating_products_with_oslc/implementing_an_oslc_provider/1_2_providing_service_resources.md -------------------------------------------------------------------------------- /docs-new/integrating_products_with_oslc/implementing_an_oslc_provider/1_3_intro_to_oslc4j.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/integrating_products_with_oslc/implementing_an_oslc_provider/1_3_intro_to_oslc4j.md -------------------------------------------------------------------------------- /docs-new/integrating_products_with_oslc/implementing_an_oslc_provider/1_4_ui_preview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/integrating_products_with_oslc/implementing_an_oslc_provider/1_4_ui_preview.md -------------------------------------------------------------------------------- /docs-new/integrating_products_with_oslc/implementing_an_oslc_provider/1_5_ui_selection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/integrating_products_with_oslc/implementing_an_oslc_provider/1_5_ui_selection.md -------------------------------------------------------------------------------- /docs-new/integrating_products_with_oslc/implementing_an_oslc_provider/1_6_ui_creation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/integrating_products_with_oslc/implementing_an_oslc_provider/1_6_ui_creation.md -------------------------------------------------------------------------------- /docs-new/integrating_products_with_oslc/implementing_an_oslc_provider/1_7_factory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/integrating_products_with_oslc/implementing_an_oslc_provider/1_7_factory.md -------------------------------------------------------------------------------- /docs-new/integrating_products_with_oslc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/integrating_products_with_oslc/index.md -------------------------------------------------------------------------------- /docs-new/integrating_products_with_oslc/integrating_with_an_oslc_provider/2_0_implementing_consumer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/integrating_products_with_oslc/integrating_with_an_oslc_provider/2_0_implementing_consumer.md -------------------------------------------------------------------------------- /docs-new/integrating_products_with_oslc/integrating_with_an_oslc_provider/2_1_consumer_use_cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/integrating_products_with_oslc/integrating_with_an_oslc_provider/2_1_consumer_use_cases.md -------------------------------------------------------------------------------- /docs-new/integrating_products_with_oslc/integrating_with_an_oslc_provider/2_2_links_and_previews.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/integrating_products_with_oslc/integrating_with_an_oslc_provider/2_2_links_and_previews.md -------------------------------------------------------------------------------- /docs-new/integrating_products_with_oslc/integrating_with_an_oslc_provider/2_3_delegatedUI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/integrating_products_with_oslc/integrating_with_an_oslc_provider/2_3_delegatedUI.md -------------------------------------------------------------------------------- /docs-new/integrating_products_with_oslc/integrating_with_an_oslc_provider/2_4_notify_customers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/integrating_products_with_oslc/integrating_with_an_oslc_provider/2_4_notify_customers.md -------------------------------------------------------------------------------- /docs-new/integrating_products_with_oslc/integrating_with_an_oslc_provider/2_5_automatic_bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/integrating_products_with_oslc/integrating_with_an_oslc_provider/2_5_automatic_bugs.md -------------------------------------------------------------------------------- /docs-new/integrating_products_with_oslc/integrating_with_oslc_tutorial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/integrating_products_with_oslc/integrating_with_oslc_tutorial.pdf -------------------------------------------------------------------------------- /docs-new/integrating_products_with_oslc/overview_of_oslc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/integrating_products_with_oslc/overview_of_oslc.md -------------------------------------------------------------------------------- /docs-new/integrating_products_with_oslc/running_the_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/integrating_products_with_oslc/running_the_examples.md -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/artifact-container-associations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/artifact-container-associations.md -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/authentication.md -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/code-generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/code-generator.md -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/consumer-friend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/consumer-friend.md -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/developer-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/developer-guide.md -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/dialogs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/dialogs.md -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/environment-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/environment-setup.md -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/exploring-the-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/exploring-the-code.md -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/images/Bluemix-Domain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/images/Bluemix-Domain.png -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/images/CE4IoTConnector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/images/CE4IoTConnector.png -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/images/CRUD-Operations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/images/CRUD-Operations.png -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/images/CoreDiscovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/images/CoreDiscovery.png -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/images/Creation-Dialogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/images/Creation-Dialogs.png -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/images/Creation-Factories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/images/Creation-Factories.png -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/images/Device-BasicCapability.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/images/Device-BasicCapability.png -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/images/DeviceType-Creation-Factory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/images/DeviceType-Creation-Factory.png -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/images/Generate-the-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/images/Generate-the-code.png -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/images/Generated-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/images/Generated-project.png -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/images/IoT-Platform-Domain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/images/IoT-Platform-Domain.png -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/images/LQE-process-resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/images/LQE-process-resources.png -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/images/Project-Dependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/images/Project-Dependencies.png -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/images/Query-Capability.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/images/Query-Capability.png -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/images/Selection-Dialogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/images/Selection-Dialogs.png -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/images/authenticating-with-oauth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/images/authenticating-with-oauth.png -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/implement-domain-class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/implement-domain-class.md -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/index.md -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/junit-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/junit-tests.md -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/rootservices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/rootservices.md -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/ssl-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/ssl-support.md -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/toolchain-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/toolchain-model.md -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/trs-provider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/trs-provider.md -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/userGuide/administration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/userGuide/administration.md -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/userGuide/debug-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/userGuide/debug-interface.md -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/userGuide/images/artifact-container-associations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/userGuide/images/artifact-container-associations.png -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/userGuide/images/bluemix-ontology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/userGuide/images/bluemix-ontology.png -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/userGuide/images/concepts-detailed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/userGuide/images/concepts-detailed.png -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/userGuide/images/iot-and-bluemix-packages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/userGuide/images/iot-and-bluemix-packages.png -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/userGuide/images/iotp-ontology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/userGuide/images/iotp-ontology.png -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/userGuide/images/link-requirement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/userGuide/images/link-requirement.png -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/userGuide/images/preview-in-dng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/userGuide/images/preview-in-dng.png -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/userGuide/images/sample-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/userGuide/images/sample-preview.png -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/userGuide/images/sample-selection-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/userGuide/images/sample-selection-dialog.png -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/userGuide/install-and-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/userGuide/install-and-config.md -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/userGuide/user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/userGuide/user-guide.md -------------------------------------------------------------------------------- /docs-new/iotp_adaptor/userGuide/using.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/iotp_adaptor/userGuide/using.md -------------------------------------------------------------------------------- /docs-new/oslc-open-source-node-projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/oslc-open-source-node-projects.md -------------------------------------------------------------------------------- /docs-new/sample-applications-and-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/sample-applications-and-code.md -------------------------------------------------------------------------------- /docs-new/services-resources-and-design-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/services-resources-and-design-patterns.md -------------------------------------------------------------------------------- /docs-new/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/stylesheets/extra.css -------------------------------------------------------------------------------- /docs-new/technical-foundations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/technical-foundations.md -------------------------------------------------------------------------------- /docs-new/tutorials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/tutorials.md -------------------------------------------------------------------------------- /docs-new/why-develop-oslc-applications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/docs-new/why-develop-oslc-applications.md -------------------------------------------------------------------------------- /fix-links.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/fix-links.ps1 -------------------------------------------------------------------------------- /misc/gov-uk-technical-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/misc/gov-uk-technical-content.md -------------------------------------------------------------------------------- /misc/iso-house-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/misc/iso-house-guide.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /overrides/partials/integrations/analytics/custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/overrides/partials/integrations/analytics/custom.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/developing-oslc-applications/HEAD/requirements.txt --------------------------------------------------------------------------------