/**
  * @Method Name: getBlockedDetails @Description: Get the list of cards blocked for the selected
  * reasons. @User: juan_406753 @Return Type: void
  *
  * @param e
  */
 public void getBlockedDetails(ValueChangeEvent e) {
   this.blockedCards = new ArrayList<BlockedCardTO>();
   this.showCreditCards = true;
   this.showCreditCardDetails = false;
   this.reasons = (String[]) e.getNewValue();
   InfyCreditCardWrapper iccw = new InfyCreditCardWrapper();
   this.blockedCards = iccw.getBlockedDetails(this.reasons);
 }