Clover Coverage Report - KS Security 1.1.1-SNAPSHOT (Aggregated)
Coverage timestamp: Wed Apr 20 2011 05:09:54 EST
../../../../../../../img/srcFileCovDistChart0.png 6% of files have more coverage
2   65   2   1
0   21   1   2
2     1  
1    
 
  PasswordString       Line # 33 2 0% 2 4 0% 0.0
 
No Tests
 
1   
2    package org.kuali.student.security.wssecurity.secext.dto;
3   
4    import javax.xml.bind.annotation.XmlAccessType;
5    import javax.xml.bind.annotation.XmlAccessorType;
6    import javax.xml.bind.annotation.XmlAttribute;
7    import javax.xml.bind.annotation.XmlSchemaType;
8    import javax.xml.bind.annotation.XmlType;
9   
10   
11    /**
12    * This type is used for password elements per Section 4.1.
13    *
14    * <p>Java class for PasswordString complex type.
15    *
16    * <p>The following schema fragment specifies the expected content contained within this class.
17    *
18    * <pre>
19    * &lt;complexType name="PasswordString">
20    * &lt;simpleContent>
21    * &lt;extension base="&lt;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd>AttributedString">
22    * &lt;attribute name="Type" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
23    * &lt;anyAttribute processContents='lax' namespace='##other'/>
24    * &lt;/extension>
25    * &lt;/simpleContent>
26    * &lt;/complexType>
27    * </pre>
28    *
29    *
30    */
31    @XmlAccessorType(XmlAccessType.FIELD)
32    @XmlType(name = "PasswordString")
 
33    public class PasswordString
34    extends AttributedString
35    {
36   
37    @XmlAttribute(name = "Type")
38    @XmlSchemaType(name = "anyURI")
39    protected String type;
40   
41    /**
42    * Gets the value of the type property.
43    *
44    * @return
45    * possible object is
46    * {@link String }
47    *
48    */
 
49  0 toggle public String getType() {
50  0 return type;
51    }
52   
53    /**
54    * Sets the value of the type property.
55    *
56    * @param value
57    * allowed object is
58    * {@link String }
59    *
60    */
 
61  0 toggle public void setType(String value) {
62  0 this.type = value;
63    }
64   
65    }