001package de.deepamehta.core;
002
003import org.codehaus.jettison.json.JSONObject;
004
005
006
007/**
008 * A common interface for all entities that provide a JSON representation.
009 */
010public interface JSONEnabled {
011
012    JSONObject toJSON();
013}