server/src/app/Libraries/Mappers/RdfMapper.php
author ymh <ymh.work@gmail.com>
Wed, 20 Jan 2016 16:21:40 +0100
changeset 111 af85c436048f
parent 18 f2a40bbc27f6
permissions -rw-r--r--
change edm:WebResources to edm:WebResources

<?php
namespace CorpusParole\Libraries\Mappers;

/**
 * Map a rdf graph to one more graph(es).
 */
interface RdfMapper {

    /**
     * Map an Rdf Graph from one model to another
     * @return the new mapped graph
     */
    function mapGraph();

    /**
     * Get output graphes
     * @return array
     */
    function getOutputGraphes();
}