abstract class Json { Map toJson(); String getJsonFileName(); } abstract class JsonFactory { T fromJson(Map json); }