Benneth Christiansson (Ed.)
Mattias Forss,
Ivar Hagen,
Kent Hansson,
Johan Jonasson,
Mattias Jonasson,
Fredrik Lott,
Sara Olsson, and
Thomas Rosevall
Gof Design patterns
A very nice recap of the design patterns.
SOA Consultant
When piece of code in given below:-1. Long id = request.getId();
2.
3. if(request == null || id == null) {
4. throw new RuntimeException("id cannot be null");
5. }
1. if(request == null || request.getId() == null) {
2. throw new RuntimeException("id cannot be null");
3. }
Long id = request.getId();