Clover Coverage Report - Kuali Student 1.2-M2-SNAPSHOT (Aggregated)
Coverage timestamp: Fri Apr 22 2011 04:03:20 EST
../../../../../../../img/srcFileCovDistChart0.png 53% of files have more coverage
6   89   7   0.86
0   34   1.17   7
7     1  
1    
 
  ObjectFactory       Line # 25 6 0% 7 13 0% 0.0
 
No Tests
 
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    * This object contains factory methods for each
12    * Java content interface and Java element interface
13    * generated in the org.kuali.student.security.wssecurity.utility.dto package.
14    * <p>An ObjectFactory allows you to programatically
15    * construct new instances of the Java representation
16    * for XML content. The Java representation of XML
17    * content can consist of schema derived interfaces
18    * and classes representing the binding of schema
19    * type definitions, element declarations and model
20    * groups. Factory methods for each of these are
21    * provided in this class.
22    *
23    */
24    @XmlRegistry
 
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    * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.kuali.student.security.wssecurity.utility.dto
33    *
34    */
 
35  0 toggle public ObjectFactory() {
36    }
37   
38    /**
39    * Create an instance of {@link TimestampType }
40    *
41    */
 
42  0 toggle public TimestampType createTimestampType() {
43  0 return new TimestampType();
44    }
45   
46    /**
47    * Create an instance of {@link AttributedDateTime }
48    *
49    */
 
50  0 toggle public AttributedDateTime createAttributedDateTime() {
51  0 return new AttributedDateTime();
52    }
53   
54    /**
55    * Create an instance of {@link AttributedURI }
56    *
57    */
 
58  0 toggle public AttributedURI createAttributedURI() {
59  0 return new AttributedURI();
60    }
61   
62    /**
63    * Create an instance of {@link JAXBElement }{@code <}{@link AttributedDateTime }{@code >}}
64    *
65    */
 
66  0 toggle @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    * Create an instance of {@link JAXBElement }{@code <}{@link TimestampType }{@code >}}
73    *
74    */
 
75  0 toggle @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    * Create an instance of {@link JAXBElement }{@code <}{@link AttributedDateTime }{@code >}}
82    *
83    */
 
84  0 toggle @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    }