GeoKnow/Jassa-Core

View on GitHub
lib/sponate/MappedConceptSource.js

Summary

Maintainability
A
2 hrs
Test Coverage
var Class = require('../ext/Class');

var MappedConceptSource = Class.create({
    initialize: function(mappedConcept, sparqlService) {
        this.mappedConcept = mappedConcept;
        this.sparqlService = sparqlService;
    },

    getMappedConcept: function() {
        return this.mappedConcept;
    },

    getSparqlService: function() {
        return this.sparqlService;
    },

});

module.exports = MappedConceptSource;