1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.contract.model.validation; |
17 | |
|
18 | |
import org.kuali.student.contract.model.ServiceMethod; |
19 | |
import org.kuali.student.contract.model.ServiceMethodReturnValue; |
20 | |
|
21 | |
import java.util.ArrayList; |
22 | |
import java.util.Collection; |
23 | |
|
24 | |
|
25 | |
|
26 | |
|
27 | |
|
28 | |
public class ServiceMethodReturnValueValidator implements ModelValidator { |
29 | |
|
30 | |
private ServiceMethodReturnValue returnValue; |
31 | |
private ServiceMethod serviceMethod; |
32 | |
|
33 | |
public ServiceMethodReturnValueValidator(ServiceMethodReturnValue returnValue, |
34 | 0 | ServiceMethod serviceMethod) { |
35 | 0 | this.returnValue = returnValue; |
36 | 0 | this.serviceMethod = serviceMethod; |
37 | 0 | } |
38 | |
private Collection errors; |
39 | |
|
40 | |
@Override |
41 | |
public Collection<String> validate() { |
42 | 0 | errors = new ArrayList(); |
43 | 0 | basicValidation(); |
44 | 0 | return errors; |
45 | |
} |
46 | |
|
47 | |
private void basicValidation() { |
48 | 0 | if (returnValue.getType().equals("")) { |
49 | 0 | addError("return type is required"); |
50 | |
} |
51 | 0 | if (returnValue.getDescription().equals("")) { |
52 | 0 | addError("Description is required"); |
53 | |
} |
54 | |
|
55 | 0 | } |
56 | |
|
57 | |
private void addError(String msg) { |
58 | 0 | String error = "Error in return value for method: " + serviceMethod.getService() |
59 | |
+ "." + serviceMethod.getName() + ": " + msg; |
60 | 0 | if (!errors.contains(error)) { |
61 | 0 | errors.add(error); |
62 | |
} |
63 | 0 | } |
64 | |
} |