/*package*/ StatusJSONImpl(HttpResponse res, Configuration conf) throws TwitterException {
   super(res);
   JSONObject json = res.asJSONObject();
   init(json);
   if (conf.isJSONStoreEnabled()) {
     DataObjectFactoryUtil.clearThreadLocalMap();
     DataObjectFactoryUtil.registerJSONObject(this, json);
   }
 }
 /*package*/ StatusJSONImpl(JSONObject json) throws TwitterException {
   super();
   init(json);
 }