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