1 |
|
|
2 |
|
package org.kuali.student.security.trust.service.jaxws; |
3 |
|
|
4 |
|
import javax.xml.bind.annotation.XmlAccessType; |
5 |
|
import javax.xml.bind.annotation.XmlAccessorType; |
6 |
|
import javax.xml.bind.annotation.XmlElement; |
7 |
|
import javax.xml.bind.annotation.XmlRootElement; |
8 |
|
import javax.xml.bind.annotation.XmlType; |
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
@XmlRootElement(name = "RequestSecurityToken2Response", namespace = "http://schemas.xmlsoap.org/ws/2005/02/trust/wsdl") |
17 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
18 |
|
@XmlType(name = "RequestSecurityToken2Response", namespace = "http://schemas.xmlsoap.org/ws/2005/02/trust/wsdl") |
19 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (4) |
Complexity: 2 |
Complexity Density: 1 |
|
20 |
|
public class RequestSecurityToken2Response { |
21 |
|
|
22 |
|
@XmlElement(name = "RequestSecurityTokenResponseCollection") |
23 |
|
private org.kuali.student.security.trust.dto.RequestSecurityTokenResponseCollectionType RequestSecurityTokenResponseCollection; |
24 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
25 |
1
|
public org.kuali.student.security.trust.dto.RequestSecurityTokenResponseCollectionType getRequestSecurityTokenResponseCollection() {... |
26 |
1
|
return this.RequestSecurityTokenResponseCollection; |
27 |
|
} |
28 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
29 |
1
|
public void setRequestSecurityTokenResponseCollection(org.kuali.student.security.trust.dto.RequestSecurityTokenResponseCollectionType newRequestSecurityTokenResponseCollection) {... |
30 |
1
|
this.RequestSecurityTokenResponseCollection = newRequestSecurityTokenResponseCollection; |
31 |
|
} |
32 |
|
|
33 |
|
} |
34 |
|
|