| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
package org.kuali.student.contract.model; |
| 17 |
|
|
| 18 |
|
import java.util.ArrayList; |
| 19 |
|
import java.util.List; |
| 20 |
|
|
| 21 |
|
|
| 22 |
|
|
| 23 |
|
@author |
| 24 |
|
|
|
|
|
| 0% |
Uncovered Elements: 36 (36) |
Complexity: 16 |
Complexity Density: 0.89 |
|
| 25 |
|
public class ServiceMethod { |
| 26 |
|
|
| 27 |
|
private String service; |
| 28 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 29 |
0
|
public String getService() {... |
| 30 |
0
|
return service; |
| 31 |
|
} |
| 32 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 33 |
0
|
public void setService(String service) {... |
| 34 |
0
|
this.service = service; |
| 35 |
|
} |
| 36 |
|
private String name; |
| 37 |
|
|
| 38 |
|
|
| 39 |
|
|
| 40 |
|
|
| 41 |
|
@return |
| 42 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 43 |
0
|
public String getName() {... |
| 44 |
0
|
return name; |
| 45 |
|
} |
| 46 |
|
|
| 47 |
|
|
| 48 |
|
|
| 49 |
|
|
| 50 |
|
@param |
| 51 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 52 |
0
|
public void setName(String name) {... |
| 53 |
0
|
this.name = name; |
| 54 |
|
} |
| 55 |
|
private String url; |
| 56 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 57 |
0
|
public String getUrl() {... |
| 58 |
0
|
return url; |
| 59 |
|
} |
| 60 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 61 |
0
|
public void setUrl(String url) {... |
| 62 |
0
|
this.url = url; |
| 63 |
|
} |
| 64 |
|
private String description; |
| 65 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 66 |
0
|
public String getDescription() {... |
| 67 |
0
|
return description; |
| 68 |
|
} |
| 69 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 70 |
0
|
public void setDescription(String description) {... |
| 71 |
0
|
this.description = description; |
| 72 |
|
} |
| 73 |
|
private List<ServiceMethodParameter> parameters; |
| 74 |
|
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
| 75 |
0
|
public List<ServiceMethodParameter> getParameters() {... |
| 76 |
0
|
if (parameters == null) { |
| 77 |
0
|
parameters = new ArrayList(); |
| 78 |
|
} |
| 79 |
0
|
return parameters; |
| 80 |
|
} |
| 81 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 82 |
0
|
public void setParameters(List<ServiceMethodParameter> parameters) {... |
| 83 |
0
|
this.parameters = parameters; |
| 84 |
|
} |
| 85 |
|
private ServiceMethodReturnValue returnValue; |
| 86 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 87 |
0
|
public ServiceMethodReturnValue getReturnValue() {... |
| 88 |
0
|
return returnValue; |
| 89 |
|
} |
| 90 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 91 |
0
|
public void setReturnValue(ServiceMethodReturnValue returnValue) {... |
| 92 |
0
|
this.returnValue = returnValue; |
| 93 |
|
} |
| 94 |
|
private List<ServiceMethodError> errors; |
| 95 |
|
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
| 96 |
0
|
public List<ServiceMethodError> getErrors() {... |
| 97 |
0
|
if (errors == null) { |
| 98 |
0
|
errors = new ArrayList(); |
| 99 |
|
} |
| 100 |
0
|
return errors; |
| 101 |
|
} |
| 102 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 103 |
0
|
public void setErrors(List<ServiceMethodError> errors) {... |
| 104 |
0
|
this.errors = errors; |
| 105 |
|
} |
| 106 |
|
} |