/**
   * Returns the list of CSR Files belongs to the tenant
   *
   * @return list of CSR Files
   * @throws AxisFault
   */
  public CsrMetaInfo[] getCSRFileList() throws AxisFault {

    try {
      return stub.getAllCsrs();
    } catch (Exception e) {
      String message = e.getMessage();
      handleException(e.getMessage(), e);
    }
    return null;
  }