How to filter unused Assets that are present in DAM
I got requirement that to filter un-used assets present in dam
-> I have written servlet and triggered SQL-2 Query to fetch all assets from dam, I am getting the all dam assets.
My Code to fetch the assets
RowIterator rowIterator = queryResult.getRows();
while (rowIterator.hasNext()) {
Row row = rowIterator.nextRow();
//Here i am getting all the DAM assets
LOG.info("---assets--->"+row.toString());
Now i need to filter the assets that are not used in whole project.