using JapRepository - SPring Data JPA, how to handle this case : (AnB) U (CnD) operation where braces plays vital role.
findAllByAAndB() => WHERE A = ? AND B = ?
findAllByCAndD() => WHERE C = ? AND D = ?
findAllByXOrY() => WHERE X = ? AND Y = ?
<How to achieve this clause> => WHERE ( A = ? AND B = ? ) OR ( C = ? AND D = ? )