server/src/app/Libraries/Mappers/RdfMapper.php
changeset 18 f2a40bbc27f6
equal deleted inserted replaced
17:ac3dc090e987 18:f2a40bbc27f6
       
     1 <?php
       
     2 namespace CorpusParole\Libraries\Mappers;
       
     3 
       
     4 /**
       
     5  * Map a rdf graph to one more graph(es).
       
     6  */
       
     7 interface RdfMapper {
       
     8 
       
     9     /**
       
    10      * Map an Rdf Graph from one model to another
       
    11      * @return the new mapped graph
       
    12      */
       
    13     function mapGraph();
       
    14 
       
    15     /**
       
    16      * Get output graphes
       
    17      * @return array
       
    18      */
       
    19     function getOutputGraphes();
       
    20 }