1 |
|
|
2 |
|
package org.kuali.student.security.wssecurity.utility.dto; |
3 |
|
|
4 |
|
import javax.xml.bind.JAXBElement; |
5 |
|
import javax.xml.bind.annotation.XmlElementDecl; |
6 |
|
import javax.xml.bind.annotation.XmlRegistry; |
7 |
|
import javax.xml.namespace.QName; |
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
|
|
21 |
|
|
22 |
|
|
23 |
|
|
24 |
|
@XmlRegistry |
|
|
| 0% |
Uncovered Elements: 13 (13) |
Complexity: 7 |
Complexity Density: 1.17 |
|
25 |
|
public class ObjectFactory { |
26 |
|
|
27 |
|
private final static QName _Expires_QNAME = new QName("http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", "Expires"); |
28 |
|
private final static QName _Timestamp_QNAME = new QName("http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", "Timestamp"); |
29 |
|
private final static QName _Created_QNAME = new QName("http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", "Created"); |
30 |
|
|
31 |
|
|
32 |
|
|
33 |
|
|
34 |
|
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
35 |
0
|
public ObjectFactory() {... |
36 |
|
} |
37 |
|
|
38 |
|
|
39 |
|
@link |
40 |
|
|
41 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
42 |
0
|
public TimestampType createTimestampType() {... |
43 |
0
|
return new TimestampType(); |
44 |
|
} |
45 |
|
|
46 |
|
|
47 |
|
@link |
48 |
|
|
49 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
50 |
0
|
public AttributedDateTime createAttributedDateTime() {... |
51 |
0
|
return new AttributedDateTime(); |
52 |
|
} |
53 |
|
|
54 |
|
|
55 |
|
@link |
56 |
|
|
57 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
58 |
0
|
public AttributedURI createAttributedURI() {... |
59 |
0
|
return new AttributedURI(); |
60 |
|
} |
61 |
|
|
62 |
|
|
63 |
|
@link@link |
64 |
|
|
65 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
66 |
0
|
@XmlElementDecl(namespace = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", name = "Expires")... |
67 |
|
public JAXBElement<AttributedDateTime> createExpires(AttributedDateTime value) { |
68 |
0
|
return new JAXBElement<AttributedDateTime>(_Expires_QNAME, AttributedDateTime.class, null, value); |
69 |
|
} |
70 |
|
|
71 |
|
|
72 |
|
@link@link |
73 |
|
|
74 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
75 |
0
|
@XmlElementDecl(namespace = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", name = "Timestamp")... |
76 |
|
public JAXBElement<TimestampType> createTimestamp(TimestampType value) { |
77 |
0
|
return new JAXBElement<TimestampType>(_Timestamp_QNAME, TimestampType.class, null, value); |
78 |
|
} |
79 |
|
|
80 |
|
|
81 |
|
@link@link |
82 |
|
|
83 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
84 |
0
|
@XmlElementDecl(namespace = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", name = "Created")... |
85 |
|
public JAXBElement<AttributedDateTime> createCreated(AttributedDateTime value) { |
86 |
0
|
return new JAXBElement<AttributedDateTime>(_Created_QNAME, AttributedDateTime.class, null, value); |
87 |
|
} |
88 |
|
|
89 |
|
} |