// Set the line item to get LICAs by.
Long lineItemId = Long.parseLong("INSERT_LINE_ITEM_ID_HERE");
// Create a statement to only select LICAs for the given lineItem ID.
Statement filterStatement =
new StatementBuilder("WHERE lineItemId = :lineItemId LIMIT 500")
.putValue("lineItemId", lineItemId).toStatement();
// Get LICAs by statement.
LineItemCreativeAssociationPage page =
licaService.getLineItemCreativeAssociationsByStatement(filterStatement);