Hi. I have an object that contains a Collection. What is the FIQL syntax to
filter on values in the Collection?
I have tried:
'features==3' returns nothing even though the list does contain
FeatureEntitlements that have 3 in the Collection of features
'features=gt=3' incorrectly returns every FeatureEntitlement
public class FeatureEntitlement implements Serializable
{
private String divisionId;
private String accountNumber;
private Collection<Integer> features;
private Date lastModified;
private Integer expiry;
. . .
}
--
View this message in context:
http://cxf.547215.n5.nabble.com/FIQL-with-objects-containing-Collection-tp5777134.html
Sent from the cxf-user mailing list archive at Nabble.com.