SlideShare a Scribd company logo
Generative Software GmbH
Java User Group Freiburg
5. März 2018
Internet of Things für Java-Entwickler
1
Agenda
 What is IoT?
 IoT Gateway with Eclipse IoT
 The Story of the Smart Greenhouse
 Live-Demo of the Smart Greenhouse
 The Architecture of an IoT Gateway
2Generative Software GmbH
What is IoT?
3Generative Software GmbH
Goals of IoT Solutions
 Transparency – what is going on?
 Traceability – what was going on?
 Prediction – what will be going on?
 Emergency – what is badly wrong?
 Optimization – what to do to improve processes?
 Agility – what intervention makes sense?
 Automation – what can be done by machines?
4Generative Software GmbH
Sensor Categories
5Generative Software GmbH
Gateway, Server, Cloud
Passive
Active – Always On
Active – Wake Up
Gateway, Server, Cloud
Gateway, Server, Cloud
Microprocessor
Where to use Sensor Data
6Generative Software GmbH
Time Frame On Device (Edge) On Stream (Fog) In Batch (Cloud)
Hours to Weeks In Database
Strategic Insight
Machine Learning
Minutes to Hours In Process
Performance Insights
Summary Statistics
Seconds to Minutes Operational Insight
Rules Engine
Microseconds to Seconds Signal Processing
IoT Gateway
Protocols
7Generative Software GmbH
HTTP CoAP AMQP XMPP MQTT
Architecture Request/Response Request/Response Point-to-Point
Publish/Subscribe
Request/Response
Publish/Subscribe
Publish/Subscribe
Representation Text, Binary Binary Binary Text Binary
Transport TCP UDP TCP TCP TCP
Security (Transp.) TLS DTLS TLS TLS TLS
Discovery No Yes No No No
Scope Device-to-Cloud Device-to-Device Device-to-Cloud
Cloud-to-Device
Device-to-Cloud
Cloud-to-Device
Device-to-Cloud
Cloud-to-Device
Suitable for
Constr. Devices
Possibly Yes Possibly Possibly Yes
Server Updates Pull Pull, Push Push Push Push
Networks
8Generative Software GmbH
Data Unit OSI Layer Examples
Host/Service
Layers
Data Application HTTP, FTP, ‚IoT Protocols‘ Peer-to-Peer
Protocols
Presentation TLS, SSL
Session NetBIOS
Segment/Datagram Transport TCP, UDP
Network
Protocols
Device/Media
Layers
Packet/Datagram Network IP, ARP, ICMP, IPSec
Frame Data Link Ethernet, ATM, PPP
Bit Physical Ethernet, WiFi, USB, Bluetooth, SPI, I2C
Eclipse IoT
9Generative Software GmbH
 Working Group
– Members: 39 (Mar 2018), RedHat, SAP, Intel, Bosch, Canonical,
Cloudera, DB Systel, Huawei, IBM, Siemens, Sierra Wireless, …
– Community: IoT Testbeds, Youtube, Meetups, Whitepapers,
Surveys, Conferences, Open IoT Challenge …
 Technology
– Eclipse Projects: Paho, Kura, Californium, Mosquitto, Vorto, Milo,
Kapua, Hono, HawkBit, …
– Standards: CoAP, MQTT, OPC UA, OMA LWM2M, …
– Programming Languages: Java, C, C++, Python, …
OSGi
10Generative Software GmbH
 Originally: Open Services Gateway initiative
 Today: OSGi Alliance (defines APIs and Test Cases)
 Open, modular and scalable „Service Delivery Platform“
 Java-based
 Well-known Open Source Frameworks:
– Knoplerfish
– Eclipse Equinox
– Apache Felix
– Concierge
 Modularization with so-called „Bundles“
 Visibility of Java Packages
 Semantic Versioning of Java Packages
 (Declarative) Services
Smart, Smarter, …
11Generative Software GmbH
Requirements for the IoT Greenhouse
 Show all Sensor Values on a Display
 Control Plant Lamp depending on Luminocity
 Control Water Pump depending on Soil Humidity
 Control Heating depending on Air Temperature
 Switch on a Buzzer when Gas Sensor detects Gas
 Send Sensor Data to a Server and store it there
12Generative Software GmbH
Buy an IKEA Mini Greenhouse …
13Generative Software GmbH
… assemble it …
14Generative Software GmbH
… fill it with Hardware …
15Generative Software GmbH
… add Software to it …
16Generative Software GmbH
… connect it with a Network …
17Generative Software GmbH
… and ready is the Smart Greenhouse
Software Stack
Eclipse IoT
 Kura (IoT Gateway Software, Java+OSGi)
 Mosquitto (MQTT Broker)
 Paho (MQTT Client)
 Californium (CoAP)
Jakarta EE
 JAX-RS
 JAXB
 JSF
 Servlets
 EJB
 JPA
19Generative Software GmbH
The Smart Greenhouse - Details
20Generative Software GmbH
IoT Gateway (Raspberry Pi 2)
Kura, Paho, Californium
IoT Server
Paho, Californium
Glassfish 4.1
Java EE
Network Connection
Sensors
MQTT Broker
Mosquitto
Actuator „LED Strip“
Hose to Actuator „Pump“
LCD Display
What shall the IoT Solution do?
1. Read Sensors with the Kura IoT Gateway
2. Execute Business Logic with the Kura IoT Gateway
3. Send Sensor Data to Mosquitto with Paho (MQTT)
4. Collect Sensor Data with Paho and Servlets
5. Persist Sensor Data by Means of a REST API (JAX-RS, EJB, JPA)
6. Display Sensor Data by Means of a JSF Web App (uses same REST-API)
7. Control Actuators with a JSF Web App and Californium (CoAP)
8. Execute Business Logic on a Server with Paho and EJBs
21Generative Software GmbH
Live Demo!
22Generative Software GmbH
MQTT
(Message Queue Telemetry Transport)
23Generative Software GmbH
Message
Broker
Publisher Subscriber
publish to …
client-id/app-id/temperature
subscribe to …
client-id/app-id/temperature
1 2
SubscriberPublisher
MQTT
24Generative Software GmbH
 [account-name]/[client-id]/[app-id]/[resource-id]
 Subscription Wildcards
# … e.g. client-id/app-id/#
client-id/app-id/temperature
client-id/app-id/plant/light
client-id/app-id/plant/moisture
+ … e.g. client-id/app-id/+/light
client-id/app-id/plant/light
 Do not subscribe to # (all messages)
CoAP
(Constrained Application Protocol)
25Generative Software GmbH
CoAP
Server
CoAP
Client
GET request: coap://<CoAP-Host>:5683/temperature
response
GET
PUT
POST
DELETE
1
2
3
OSGi Container
Eclipse Kura
Paho
CoAP
OpenJDK I/O
Californium
…
Paho
Publisher
Device Service
Simulation
MQTT
Service Interfaces
Legende
Service-Aufrufe
Data Flow
OSGi Bundle
Simulationsdaten
Sensordaten simulieren
und verschicken
26Generative Software GmbH
OSGi Container
Eclipse Kura
Paho
CoAP
OpenJDK I/O
Californium
…
Paho
Publisher
Business Logic
Device Service
Simulation
MQTT
Service Interfaces
Legende
Service-Aufrufe
Data Flow
OSGi Bundle
Simulationsdaten
Gateway-Logik
simulieren
27Generative Software GmbH
Device Access with Java
 OpenJDK Device I/O: GPIO, I2C, UART, SPI
 TinyB: Bluetooth LE
 Pi4J: Object-Oriented API to access I/O
Capabilities of Raspberry Pi
28Generative Software GmbH
Kura
Eclipse Kura
Paho
CoAP
OpenJDK I/O
Californium
…
Kura
Data Service
Device Service
MQTT
Service Interfaces
Legende
Service-Aufrufe
Data Flow
OSGi Bundle
Echte Sensordaten
verschicken
29Generative Software GmbH
Kura
Eclipse Kura
Paho
CoAP
OpenJDK I/O
Californium
…
Kura
Data Service
Business Logic
Device Service
MQTT
Service Interfaces
Legende
Service-Aufrufe
Data Flow
OSGi Bundle
Gateway-Logik
implementieren
30Generative Software GmbH
Tutorials on Github and Bitbucket
31Generative Software GmbH
Eclipse Tutorial: github.com/kartben/kura-greenhouse-demo
Greenhouse Tutorial: bitbucket.org/jenerateit/tutorial-smart-greenhouse
Tutorial IOTDEV-Kurs: bitbucket.org/jenerateit/tutorial-smart-production-monitoring
Thank you!
 Summary
 Questions
 Outlook
32Generative Software GmbH
Marcus Munzert
CEO and President
munzert@generative-software.com
Generative Software GmbH
Cornelia-Schlosser-Allee 15
79111 Freiburg
Germany
www.generative-software.de
www.virtual-developer.com

More Related Content

PDF
Kaist snail-20150122
PDF
QNAP NAS打造私有雲平台
PDF
The Road to Internet of Things
PPTX
Defining an Open IoT Stack - Presented at IoT World 2015
PPTX
Building the IOT Platform as a Service
PPTX
The Right Tools for IoT Developers – Dan Gross @ Eclipse IoT Day ThingMonk 2016
PDF
GS1 EPCglobal framework and Oliot Project Overview
PDF
Oliot samsung-daeyoungkim-kaist wide-version-final
Kaist snail-20150122
QNAP NAS打造私有雲平台
The Road to Internet of Things
Defining an Open IoT Stack - Presented at IoT World 2015
Building the IOT Platform as a Service
The Right Tools for IoT Developers – Dan Gross @ Eclipse IoT Day ThingMonk 2016
GS1 EPCglobal framework and Oliot Project Overview
Oliot samsung-daeyoungkim-kaist wide-version-final

What's hot (20)

PPTX
Leveraging the Open IoT Ecosystem to Accelerate Innovation [BizofIoT]
PPTX
3 Software Stacks for IoT Solutions
PPTX
Akraino and Edge Computing
PPTX
IoT Platforms and Architecture
PDF
Using Eclipse MQTT & Sparkplug as your IIoT Digital Transformation Toolkit | ...
PDF
Introducing the Vitis Unified Software Platform for Programming FPGAs
PDF
Oliot Open Source Project
PPTX
IoT Broker
PPTX
ABC of IoT Consortiums
PDF
Kubernetes Native Infrastructure and CoreOS Operator Framework for 5G Edge Cl...
PPTX
OpenStack-Based NFV Cloud at Swisscom: challenges and best practices
PDF
Pro syst about us
PDF
Major Market Shifts in IT
PDF
GS1/Oliot ONS/DS and Next
PPTX
Azure IoT End-to-End
PDF
Oliot daeyoungkim-kaist-2015 - final - short
PPTX
NVIDIA Developer Program Overview
PPTX
Developing IoT Applications Using Intel® System Studio | Eclipse IoT Day Sant...
PDF
GS1 Digital
ODP
Using open source for IoT
Leveraging the Open IoT Ecosystem to Accelerate Innovation [BizofIoT]
3 Software Stacks for IoT Solutions
Akraino and Edge Computing
IoT Platforms and Architecture
Using Eclipse MQTT & Sparkplug as your IIoT Digital Transformation Toolkit | ...
Introducing the Vitis Unified Software Platform for Programming FPGAs
Oliot Open Source Project
IoT Broker
ABC of IoT Consortiums
Kubernetes Native Infrastructure and CoreOS Operator Framework for 5G Edge Cl...
OpenStack-Based NFV Cloud at Swisscom: challenges and best practices
Pro syst about us
Major Market Shifts in IT
GS1/Oliot ONS/DS and Next
Azure IoT End-to-End
Oliot daeyoungkim-kaist-2015 - final - short
NVIDIA Developer Program Overview
Developing IoT Applications Using Intel® System Studio | Eclipse IoT Day Sant...
GS1 Digital
Using open source for IoT
Ad

Similar to Java User Group Freiburg - Internet of Things für Java-Entwickler (20)

PDF
Creating a Java Internet of Things Gateway
PDF
End-to-end IoT solutions with Java and Eclipse IoT
PPTX
Eclipse IOT [IoT World Santa Clara]
PDF
Developer Day 2014 - 6 - open source iot - eclipse foundation
PDF
Devoxx 2015 - Building the Internet of Things with Eclipse IoT
PDF
Open Source Internet of Things 101 – EclipseCon 2016
PDF
Building the Internet of Things with open source and Eclipse IoT projects (Be...
PDF
2016-09-eclipse-iot-cf-summit
PPTX
Eclipse IoT slide deck [MASTER DECK].pptx
PDF
Building the IoT - Coding Serbia 2015
PDF
JVM-Con 2017 – Java and IoT, will it blend?
PDF
IoT projects in Eclipse Foundation using LwM2M (IoT World 2017 Workshop)
PDF
Open-source IoT cookbook
PPTX
Open Source IoT at Eclipse
PDF
Industrial IoT Mayhem? Java IoT Gateways to the Rescue
PPTX
Creating the open source building blocks for IoT
PDF
Eclipse IoT Overview
PPTX
Activity lot new.pptx for internet of things
PDF
Building Open Source IoT Cloud
PPTX
Leveraging the Open IoT Ecosystem to Accelerate Product Strategy
Creating a Java Internet of Things Gateway
End-to-end IoT solutions with Java and Eclipse IoT
Eclipse IOT [IoT World Santa Clara]
Developer Day 2014 - 6 - open source iot - eclipse foundation
Devoxx 2015 - Building the Internet of Things with Eclipse IoT
Open Source Internet of Things 101 – EclipseCon 2016
Building the Internet of Things with open source and Eclipse IoT projects (Be...
2016-09-eclipse-iot-cf-summit
Eclipse IoT slide deck [MASTER DECK].pptx
Building the IoT - Coding Serbia 2015
JVM-Con 2017 – Java and IoT, will it blend?
IoT projects in Eclipse Foundation using LwM2M (IoT World 2017 Workshop)
Open-source IoT cookbook
Open Source IoT at Eclipse
Industrial IoT Mayhem? Java IoT Gateways to the Rescue
Creating the open source building blocks for IoT
Eclipse IoT Overview
Activity lot new.pptx for internet of things
Building Open Source IoT Cloud
Leveraging the Open IoT Ecosystem to Accelerate Product Strategy
Ad

Recently uploaded (20)

PPTX
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PPTX
CHAPTER 2 - PM Management and IT Context
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
PDF
System and Network Administration Chapter 2
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PDF
top salesforce developer skills in 2025.pdf
PDF
Digital Strategies for Manufacturing Companies
PPTX
history of c programming in notes for students .pptx
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PDF
Understanding Forklifts - TECH EHS Solution
PDF
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PDF
AI in Product Development-omnex systems
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
2025 Textile ERP Trends: SAP, Odoo & Oracle
Adobe Illustrator 28.6 Crack My Vision of Vector Design
Internet Downloader Manager (IDM) Crack 6.42 Build 41
CHAPTER 2 - PM Management and IT Context
How to Choose the Right IT Partner for Your Business in Malaysia
System and Network Administration Chapter 2
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
top salesforce developer skills in 2025.pdf
Digital Strategies for Manufacturing Companies
history of c programming in notes for students .pptx
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
Navsoft: AI-Powered Business Solutions & Custom Software Development
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
Understanding Forklifts - TECH EHS Solution
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
Design an Analysis of Algorithms II-SECS-1021-03
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
Which alternative to Crystal Reports is best for small or large businesses.pdf
AI in Product Development-omnex systems

Java User Group Freiburg - Internet of Things für Java-Entwickler

  • 1. Generative Software GmbH Java User Group Freiburg 5. März 2018 Internet of Things für Java-Entwickler 1
  • 2. Agenda  What is IoT?  IoT Gateway with Eclipse IoT  The Story of the Smart Greenhouse  Live-Demo of the Smart Greenhouse  The Architecture of an IoT Gateway 2Generative Software GmbH
  • 3. What is IoT? 3Generative Software GmbH
  • 4. Goals of IoT Solutions  Transparency – what is going on?  Traceability – what was going on?  Prediction – what will be going on?  Emergency – what is badly wrong?  Optimization – what to do to improve processes?  Agility – what intervention makes sense?  Automation – what can be done by machines? 4Generative Software GmbH
  • 5. Sensor Categories 5Generative Software GmbH Gateway, Server, Cloud Passive Active – Always On Active – Wake Up Gateway, Server, Cloud Gateway, Server, Cloud Microprocessor
  • 6. Where to use Sensor Data 6Generative Software GmbH Time Frame On Device (Edge) On Stream (Fog) In Batch (Cloud) Hours to Weeks In Database Strategic Insight Machine Learning Minutes to Hours In Process Performance Insights Summary Statistics Seconds to Minutes Operational Insight Rules Engine Microseconds to Seconds Signal Processing IoT Gateway
  • 7. Protocols 7Generative Software GmbH HTTP CoAP AMQP XMPP MQTT Architecture Request/Response Request/Response Point-to-Point Publish/Subscribe Request/Response Publish/Subscribe Publish/Subscribe Representation Text, Binary Binary Binary Text Binary Transport TCP UDP TCP TCP TCP Security (Transp.) TLS DTLS TLS TLS TLS Discovery No Yes No No No Scope Device-to-Cloud Device-to-Device Device-to-Cloud Cloud-to-Device Device-to-Cloud Cloud-to-Device Device-to-Cloud Cloud-to-Device Suitable for Constr. Devices Possibly Yes Possibly Possibly Yes Server Updates Pull Pull, Push Push Push Push
  • 8. Networks 8Generative Software GmbH Data Unit OSI Layer Examples Host/Service Layers Data Application HTTP, FTP, ‚IoT Protocols‘ Peer-to-Peer Protocols Presentation TLS, SSL Session NetBIOS Segment/Datagram Transport TCP, UDP Network Protocols Device/Media Layers Packet/Datagram Network IP, ARP, ICMP, IPSec Frame Data Link Ethernet, ATM, PPP Bit Physical Ethernet, WiFi, USB, Bluetooth, SPI, I2C
  • 9. Eclipse IoT 9Generative Software GmbH  Working Group – Members: 39 (Mar 2018), RedHat, SAP, Intel, Bosch, Canonical, Cloudera, DB Systel, Huawei, IBM, Siemens, Sierra Wireless, … – Community: IoT Testbeds, Youtube, Meetups, Whitepapers, Surveys, Conferences, Open IoT Challenge …  Technology – Eclipse Projects: Paho, Kura, Californium, Mosquitto, Vorto, Milo, Kapua, Hono, HawkBit, … – Standards: CoAP, MQTT, OPC UA, OMA LWM2M, … – Programming Languages: Java, C, C++, Python, …
  • 10. OSGi 10Generative Software GmbH  Originally: Open Services Gateway initiative  Today: OSGi Alliance (defines APIs and Test Cases)  Open, modular and scalable „Service Delivery Platform“  Java-based  Well-known Open Source Frameworks: – Knoplerfish – Eclipse Equinox – Apache Felix – Concierge  Modularization with so-called „Bundles“  Visibility of Java Packages  Semantic Versioning of Java Packages  (Declarative) Services
  • 12. Requirements for the IoT Greenhouse  Show all Sensor Values on a Display  Control Plant Lamp depending on Luminocity  Control Water Pump depending on Soil Humidity  Control Heating depending on Air Temperature  Switch on a Buzzer when Gas Sensor detects Gas  Send Sensor Data to a Server and store it there 12Generative Software GmbH
  • 13. Buy an IKEA Mini Greenhouse … 13Generative Software GmbH
  • 14. … assemble it … 14Generative Software GmbH
  • 15. … fill it with Hardware … 15Generative Software GmbH
  • 16. … add Software to it … 16Generative Software GmbH
  • 17. … connect it with a Network … 17Generative Software GmbH
  • 18. … and ready is the Smart Greenhouse
  • 19. Software Stack Eclipse IoT  Kura (IoT Gateway Software, Java+OSGi)  Mosquitto (MQTT Broker)  Paho (MQTT Client)  Californium (CoAP) Jakarta EE  JAX-RS  JAXB  JSF  Servlets  EJB  JPA 19Generative Software GmbH
  • 20. The Smart Greenhouse - Details 20Generative Software GmbH IoT Gateway (Raspberry Pi 2) Kura, Paho, Californium IoT Server Paho, Californium Glassfish 4.1 Java EE Network Connection Sensors MQTT Broker Mosquitto Actuator „LED Strip“ Hose to Actuator „Pump“ LCD Display
  • 21. What shall the IoT Solution do? 1. Read Sensors with the Kura IoT Gateway 2. Execute Business Logic with the Kura IoT Gateway 3. Send Sensor Data to Mosquitto with Paho (MQTT) 4. Collect Sensor Data with Paho and Servlets 5. Persist Sensor Data by Means of a REST API (JAX-RS, EJB, JPA) 6. Display Sensor Data by Means of a JSF Web App (uses same REST-API) 7. Control Actuators with a JSF Web App and Californium (CoAP) 8. Execute Business Logic on a Server with Paho and EJBs 21Generative Software GmbH
  • 23. MQTT (Message Queue Telemetry Transport) 23Generative Software GmbH Message Broker Publisher Subscriber publish to … client-id/app-id/temperature subscribe to … client-id/app-id/temperature 1 2 SubscriberPublisher
  • 24. MQTT 24Generative Software GmbH  [account-name]/[client-id]/[app-id]/[resource-id]  Subscription Wildcards # … e.g. client-id/app-id/# client-id/app-id/temperature client-id/app-id/plant/light client-id/app-id/plant/moisture + … e.g. client-id/app-id/+/light client-id/app-id/plant/light  Do not subscribe to # (all messages)
  • 25. CoAP (Constrained Application Protocol) 25Generative Software GmbH CoAP Server CoAP Client GET request: coap://<CoAP-Host>:5683/temperature response GET PUT POST DELETE 1 2 3
  • 26. OSGi Container Eclipse Kura Paho CoAP OpenJDK I/O Californium … Paho Publisher Device Service Simulation MQTT Service Interfaces Legende Service-Aufrufe Data Flow OSGi Bundle Simulationsdaten Sensordaten simulieren und verschicken 26Generative Software GmbH
  • 27. OSGi Container Eclipse Kura Paho CoAP OpenJDK I/O Californium … Paho Publisher Business Logic Device Service Simulation MQTT Service Interfaces Legende Service-Aufrufe Data Flow OSGi Bundle Simulationsdaten Gateway-Logik simulieren 27Generative Software GmbH
  • 28. Device Access with Java  OpenJDK Device I/O: GPIO, I2C, UART, SPI  TinyB: Bluetooth LE  Pi4J: Object-Oriented API to access I/O Capabilities of Raspberry Pi 28Generative Software GmbH
  • 29. Kura Eclipse Kura Paho CoAP OpenJDK I/O Californium … Kura Data Service Device Service MQTT Service Interfaces Legende Service-Aufrufe Data Flow OSGi Bundle Echte Sensordaten verschicken 29Generative Software GmbH
  • 30. Kura Eclipse Kura Paho CoAP OpenJDK I/O Californium … Kura Data Service Business Logic Device Service MQTT Service Interfaces Legende Service-Aufrufe Data Flow OSGi Bundle Gateway-Logik implementieren 30Generative Software GmbH
  • 31. Tutorials on Github and Bitbucket 31Generative Software GmbH Eclipse Tutorial: github.com/kartben/kura-greenhouse-demo Greenhouse Tutorial: bitbucket.org/jenerateit/tutorial-smart-greenhouse Tutorial IOTDEV-Kurs: bitbucket.org/jenerateit/tutorial-smart-production-monitoring
  • 32. Thank you!  Summary  Questions  Outlook 32Generative Software GmbH Marcus Munzert CEO and President munzert@generative-software.com Generative Software GmbH Cornelia-Schlosser-Allee 15 79111 Freiburg Germany www.generative-software.de www.virtual-developer.com