public CallAPIGetPostItList(Context context, LinearLayout currentLayout) {
   super(context, ApiUrl.getPostItListRoute());
   if (currentLayout == null) {
     Log.w("PROBLEME", "PROBLEME");
   }
   this.currentLayout = currentLayout;
 }
 public CallAPIBoardList(Context context) throws NotLoggedInException {
   super(context, ApiUrl.getBoardListRoute());
 }