Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.7.6
-
None
-
Unknown
Description
I created a test below for that.
public class FiqlParserTest {
private FiqlParser<SearchBean> parser = new FiqlParser<SearchBean>(SearchBean.class);
@Test
public void childPropertiesWithSearchBean() throws SearchParseException
}
I fixed it my project using copy of class FiqlParser with changes below.
I replaced code in method "private Object parseType(...)"
from
int index = setter.indexOf(".");
to
int index = -1;
if(!this.conditionClass.equals(SearchBean.class))
index = setter.indexOf(".");
It's work for me.