001package de.deepamehta.config;
002
003import de.deepamehta.core.JSONEnabled;
004
005import org.codehaus.jettison.json.JSONObject;
006
007
008
009class ConfigDefinitions implements JSONEnabled {
010
011    // ---------------------------------------------------------------------------------------------- Instance Variables
012
013    private JSONObject json;
014
015    // ---------------------------------------------------------------------------------------------------- Constructors
016
017    ConfigDefinitions(JSONObject json) {
018        this.json = json;
019    }
020
021    // -------------------------------------------------------------------------------------------------- Public Methods
022
023    @Override
024    public JSONObject toJSON() {
025        return json;
026    }
027}