Exemplo n.º 1
0
 private void removeEntry(String rowKey, String tableName) {
   try {
     CloudTableClient tableClient = getTableClient();
     Album specificAlbum =
         tableClient
             .execute(tableName, TableOperation.retrieve("1", rowKey, Album.class))
             .getResultAsType();
     tableClient.execute(tableName, TableOperation.delete(specificAlbum));
   } catch (Exception e) {
     System.out.print("Exception encountered: ");
     System.out.println(e.getMessage());
   }
 }