Created
October 27, 2012 22:37
-
-
Save xsalefter/3966690 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
final String firstName = super.getString("firstName"); // same as request.getParameter() in servlet | |
final String lastName = super.getString("lastName"); // same as request.getParameter() in servlet | |
List<Restriction> restrictions = Arrays.asList( | |
$("firstName").like(firstName).or(), | |
$("lastName").like(lastName).or() | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment