SlideShare une entreprise Scribd logo
1  sur  36
Télécharger pour lire hors ligne
Aranuka - A POJO to Topic Maps mapping library


   Dipl.-Inf. Hannes Niederhausen                      Christian Haß M.Sc.

                              Topic Maps Lab
                    Natural Language Processing Group
                     Department of Computer Science
                            University of Leipzig


                              April 15th 2010




          Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   1/32
What is Aranuka?




      Atoll in the south pacific
            0◦ 10 N 173◦ 35 E
           15.5 square kilometers
           population of 852




                                                        Figure:
                                                        http://en.wikipedia.org/wiki/Aranuka


                 Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   2/32
What is Aranuka?




      Atoll in the south pacific
            0◦ 10 N 173◦ 35 E
           15.5 square kilometers
           population of 852
      OTMM library

                                                        Figure:
                                                        http://en.wikipedia.org/wiki/Aranuka


                 Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   2/32
Why do we need this?




   Topic Maps very generic
   Applications often more specific
   Makes development cumbersome
   Developer not familiar with Topic Maps




                 Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   3/32
Idea



   Framework which handles Topic Maps interactions
   Should not influence model design
   Concept of JPA
   Use annotations
       Define the mapping
       Add schema information to the model




                 Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   4/32
Mapping




   Classes → Topic Types
   Instance → Topics
   Strings → Names
   Strings or primitive types → Occurrences
   Other topic annotated classes → Associations




                 Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   5/32
Not supported




   No variants
   No reification
   Only static scopes
   Only one topic type




                   Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   6/32
What are annotations?




   Meta Information
   Can have parameter
   Available since Java 5.0




                 Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   7/32
A simple example



1   p u b l i c c l a s s Person {
2
3        i n t id ;
4        S t r i n g name ;
5        Date d a y O f B i r t h ;
6
7        Set <Person > f r i e n d s ;
8   }




                          Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   8/32
Defining a topic type




1
2   p u b l i c c l a s s Person




                         Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   9/32
Defining a topic type




1   @Topic ( s u b j e c t _ i d e n t i f i e r ="http://example/person" )
2   p u b l i c c l a s s Person




                        Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   10/32
We need an identifier




1
2   i n t id ;




                  Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   11/32
We need an identifier




1   @Id ( t y p e =IdType . ITEM_IDENTIFIER )
2   i n t id ;




                      Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   12/32
Defining a name




1
2   S t r i n g name ;




                         Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   13/32
Defining a name




1 @Name( t y p e ="http://example/name" )
2   S t r i n g name ;




                         Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   14/32
Defining an occurrance




1
2   Date d a y O f B i r t h ;




                            Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   15/32
Defining an occurrance




1   @Occurrence ( t y p e ="http://example/day_of_birth" )
2   Date d a y O f B i r t h ;




                    Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   16/32
Defining an association




1
2
3
4
5   Set <Person > f r i e n d s ;




                         Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   17/32
Defining an association




1   @Association (
2        t y p e ="http://example/friendship" ,
3        p l a y e d _ r o l e ="http://example/has_friend" ,
4        o t h e r _ r o l e ="http://example/is_friend_of" )
5   Set <Person > f r i e n d s ;




                      Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   18/32
Architecture I




    Aranuka is a mapper to a Topic Maps engine
    Uses third party engines via connectors
    Using Aranuka leads to the following achitecture




                  Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   19/32
Architecture II

                                       Java Application



                                     Domain Model




                  Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   20/32
Architecture II

                                       Java Application



                             Annotated Domain Model




                  Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   21/32
Architecture II

                                       Java Application



                             Annotated Domain Model




                                              Aranuka




                  Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   22/32
Architecture II

                                       Java Application



                             Annotated Domain Model




                                              Aranuka




              Ontopia                        Ontopia
                                                                               TinyTiM
              Memory                          RDBMS
                                                                              Connector
             Connector                      Connector



                  Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)    April 15th 2010   23/32
Configuration



   Choose connector
   Register annotated classes
   Set properties like file name, base locator or database connections
   Optional:
       Set names for the types specified in the annotation
       Set prefixes which can be used by identifiers in annotations and in
       identifierr in instances
   Creates session




                 Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   24/32
Session




   Used to persist instances of annotated classes
   Retrieve all instances of a given type
   Retrieve instance by identifier
   Flush topic map
   Retrieved instances are nosynchronizeded with topic map




                  Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   25/32
What can I use it for?




    Add Topic Maps layer to existing applications
    Create applications using Topic Maps as single persistence layer
    Use Aranuka to easily feed a topic map




                   Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   26/32
Application Example: Yacca-Editor

    Application to enter the data of the topic map
    Topic Map is used to upload to a Topic Maps Browser
    Topic Map is used for Yacca game (http://yacca.me)




                Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   27/32
Summary




   Aranuka maps java classes top topics
   Makes handling Topic Maps easier
   Does not support every construct of the TMDM




                 Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   28/32
Outlook




   Generate model with annotations based on TMCL
   Find way to map java.util.Map
   Provide TMQL access in session




                 Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   29/32
Questions?




             Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   30/32
Where can you find. . .



    Aranuka: http://code.google.com/p/aranuka/




               Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   31/32
Where can you find. . .



    Aranuka: http://code.google.com/p/aranuka/
    Documentation: http://docs.topicmapslab.de/aranuka/




               Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   31/32
Where can you find. . .



    Aranuka: http://code.google.com/p/aranuka/
    Documentation: http://docs.topicmapslab.de/aranuka/
    Discussion Group:
    http://groups.google.com/group/aranuka




                 Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   31/32
Where can you find. . .



    Aranuka: http://code.google.com/p/aranuka/
    Documentation: http://docs.topicmapslab.de/aranuka/
    Discussion Group:
    http://groups.google.com/group/aranuka
    Us: At the Topic Maps Lab in Leipzig
    (http://www.topicmapslab.de)




                 Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   31/32
Thank you for listening.




                    Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab)   April 15th 2010   32/32

Contenu connexe

Similaire à Aranuka Presentation Topic Maps 2010 Oslo

Similaire à Aranuka Presentation Topic Maps 2010 Oslo (10)

Defining Domain-Specific Facets for Topic Maps With TMQL Path Expressions
Defining Domain-Specific Facets for Topic Maps With TMQL Path ExpressionsDefining Domain-Specific Facets for Topic Maps With TMQL Path Expressions
Defining Domain-Specific Facets for Topic Maps With TMQL Path Expressions
 
Diplomarbeit Vitus LM
Diplomarbeit Vitus LMDiplomarbeit Vitus LM
Diplomarbeit Vitus LM
 
Doing data in the social sciences and humanities: links to and from published...
Doing data in the social sciences and humanities: links to and from published...Doing data in the social sciences and humanities: links to and from published...
Doing data in the social sciences and humanities: links to and from published...
 
Text mining and machine learning
Text mining and machine learningText mining and machine learning
Text mining and machine learning
 
Evaluation Lorenzo.dotx
Evaluation Lorenzo.dotxEvaluation Lorenzo.dotx
Evaluation Lorenzo.dotx
 
Analyzing DJ Scratching and its Acoustics
Analyzing DJ Scratching and its Acoustics Analyzing DJ Scratching and its Acoustics
Analyzing DJ Scratching and its Acoustics
 
list_of_publications
list_of_publicationslist_of_publications
list_of_publications
 
list_of_publications
list_of_publicationslist_of_publications
list_of_publications
 
QALD-7 Question Answering over Linked Data Challenge
QALD-7 Question Answering over Linked Data ChallengeQALD-7 Question Answering over Linked Data Challenge
QALD-7 Question Answering over Linked Data Challenge
 
Qald 7 at ESWC2017
Qald 7 at ESWC2017Qald 7 at ESWC2017
Qald 7 at ESWC2017
 

Dernier

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
Enterprise Knowledge
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 

Dernier (20)

Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 

Aranuka Presentation Topic Maps 2010 Oslo

  • 1. Aranuka - A POJO to Topic Maps mapping library Dipl.-Inf. Hannes Niederhausen Christian Haß M.Sc. Topic Maps Lab Natural Language Processing Group Department of Computer Science University of Leipzig April 15th 2010 Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 1/32
  • 2. What is Aranuka? Atoll in the south pacific 0◦ 10 N 173◦ 35 E 15.5 square kilometers population of 852 Figure: http://en.wikipedia.org/wiki/Aranuka Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 2/32
  • 3. What is Aranuka? Atoll in the south pacific 0◦ 10 N 173◦ 35 E 15.5 square kilometers population of 852 OTMM library Figure: http://en.wikipedia.org/wiki/Aranuka Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 2/32
  • 4. Why do we need this? Topic Maps very generic Applications often more specific Makes development cumbersome Developer not familiar with Topic Maps Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 3/32
  • 5. Idea Framework which handles Topic Maps interactions Should not influence model design Concept of JPA Use annotations Define the mapping Add schema information to the model Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 4/32
  • 6. Mapping Classes → Topic Types Instance → Topics Strings → Names Strings or primitive types → Occurrences Other topic annotated classes → Associations Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 5/32
  • 7. Not supported No variants No reification Only static scopes Only one topic type Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 6/32
  • 8. What are annotations? Meta Information Can have parameter Available since Java 5.0 Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 7/32
  • 9. A simple example 1 p u b l i c c l a s s Person { 2 3 i n t id ; 4 S t r i n g name ; 5 Date d a y O f B i r t h ; 6 7 Set <Person > f r i e n d s ; 8 } Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 8/32
  • 10. Defining a topic type 1 2 p u b l i c c l a s s Person Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 9/32
  • 11. Defining a topic type 1 @Topic ( s u b j e c t _ i d e n t i f i e r ="http://example/person" ) 2 p u b l i c c l a s s Person Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 10/32
  • 12. We need an identifier 1 2 i n t id ; Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 11/32
  • 13. We need an identifier 1 @Id ( t y p e =IdType . ITEM_IDENTIFIER ) 2 i n t id ; Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 12/32
  • 14. Defining a name 1 2 S t r i n g name ; Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 13/32
  • 15. Defining a name 1 @Name( t y p e ="http://example/name" ) 2 S t r i n g name ; Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 14/32
  • 16. Defining an occurrance 1 2 Date d a y O f B i r t h ; Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 15/32
  • 17. Defining an occurrance 1 @Occurrence ( t y p e ="http://example/day_of_birth" ) 2 Date d a y O f B i r t h ; Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 16/32
  • 18. Defining an association 1 2 3 4 5 Set <Person > f r i e n d s ; Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 17/32
  • 19. Defining an association 1 @Association ( 2 t y p e ="http://example/friendship" , 3 p l a y e d _ r o l e ="http://example/has_friend" , 4 o t h e r _ r o l e ="http://example/is_friend_of" ) 5 Set <Person > f r i e n d s ; Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 18/32
  • 20. Architecture I Aranuka is a mapper to a Topic Maps engine Uses third party engines via connectors Using Aranuka leads to the following achitecture Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 19/32
  • 21. Architecture II Java Application Domain Model Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 20/32
  • 22. Architecture II Java Application Annotated Domain Model Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 21/32
  • 23. Architecture II Java Application Annotated Domain Model Aranuka Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 22/32
  • 24. Architecture II Java Application Annotated Domain Model Aranuka Ontopia Ontopia TinyTiM Memory RDBMS Connector Connector Connector Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 23/32
  • 25. Configuration Choose connector Register annotated classes Set properties like file name, base locator or database connections Optional: Set names for the types specified in the annotation Set prefixes which can be used by identifiers in annotations and in identifierr in instances Creates session Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 24/32
  • 26. Session Used to persist instances of annotated classes Retrieve all instances of a given type Retrieve instance by identifier Flush topic map Retrieved instances are nosynchronizeded with topic map Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 25/32
  • 27. What can I use it for? Add Topic Maps layer to existing applications Create applications using Topic Maps as single persistence layer Use Aranuka to easily feed a topic map Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 26/32
  • 28. Application Example: Yacca-Editor Application to enter the data of the topic map Topic Map is used to upload to a Topic Maps Browser Topic Map is used for Yacca game (http://yacca.me) Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 27/32
  • 29. Summary Aranuka maps java classes top topics Makes handling Topic Maps easier Does not support every construct of the TMDM Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 28/32
  • 30. Outlook Generate model with annotations based on TMCL Find way to map java.util.Map Provide TMQL access in session Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 29/32
  • 31. Questions? Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 30/32
  • 32. Where can you find. . . Aranuka: http://code.google.com/p/aranuka/ Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 31/32
  • 33. Where can you find. . . Aranuka: http://code.google.com/p/aranuka/ Documentation: http://docs.topicmapslab.de/aranuka/ Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 31/32
  • 34. Where can you find. . . Aranuka: http://code.google.com/p/aranuka/ Documentation: http://docs.topicmapslab.de/aranuka/ Discussion Group: http://groups.google.com/group/aranuka Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 31/32
  • 35. Where can you find. . . Aranuka: http://code.google.com/p/aranuka/ Documentation: http://docs.topicmapslab.de/aranuka/ Discussion Group: http://groups.google.com/group/aranuka Us: At the Topic Maps Lab in Leipzig (http://www.topicmapslab.de) Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 31/32
  • 36. Thank you for listening. Dipl.-Inf. Hannes Niederhausen, Christian Haß M.Sc. (Topic Maps Lab) April 15th 2010 32/32