Coverage Report - org.kuali.student.security.wssecurity.secext.dto.KeyIdentifierType
 
Classes in this File Line Coverage Branch Coverage Complexity
KeyIdentifierType
0%
0/4
N/A
1
 
 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  
  * A security token key identifier
 13  
  * 
 14  
  * <p>Java class for KeyIdentifierType complex type.
 15  
  * 
 16  
  * <p>The following schema fragment specifies the expected content contained within this class.
 17  
  * 
 18  
  * <pre>
 19  
  * &lt;complexType name="KeyIdentifierType">
 20  
  *   &lt;simpleContent>
 21  
  *     &lt;extension base="&lt;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd>EncodedString">
 22  
  *       &lt;attribute name="ValueType" 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 = "KeyIdentifierType")
 33  0
 public class KeyIdentifierType
 34  
     extends EncodedString
 35  
 {
 36  
 
 37  
     @XmlAttribute(name = "ValueType")
 38  
     @XmlSchemaType(name = "anyURI")
 39  
     protected String valueType;
 40  
 
 41  
     /**
 42  
      * Gets the value of the valueType property.
 43  
      * 
 44  
      * @return
 45  
      *     possible object is
 46  
      *     {@link String }
 47  
      *     
 48  
      */
 49  
     public String getValueType() {
 50  0
         return valueType;
 51  
     }
 52  
 
 53  
     /**
 54  
      * Sets the value of the valueType property.
 55  
      * 
 56  
      * @param value
 57  
      *     allowed object is
 58  
      *     {@link String }
 59  
      *     
 60  
      */
 61  
     public void setValueType(String value) {
 62  0
         this.valueType = value;
 63  0
     }
 64  
 
 65  
 }