com.itzmeds.adfs.client.response.saml.Reference Maven / Gradle / Ivy
Show all versions of adfs-auth-client Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.03.20 at 12:43:08 PM IST
//
package com.itzmeds.adfs.client.response.saml;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
*
* Java class for anonymous complex type.
*
*
* The following schema fragment specifies the expected content contained within
* this class.
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = { "transforms", "digestMethod", "digestValue" })
@XmlRootElement(name = "Reference")
public class Reference {
@XmlElement(name = "Transforms", namespace = "http://www.w3.org/2000/09/xmldsig#", required = true)
protected Transforms transforms;
@XmlElement(name = "DigestMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", required = true)
protected DigestMethod digestMethod;
@XmlElement(name = "DigestValue", namespace = "http://www.w3.org/2000/09/xmldsig#", required = true)
protected String digestValue;
@XmlAttribute(name = "URI", required = true)
@XmlSchemaType(name = "anySimpleType")
protected String uri;
/**
* Gets the value of the transforms property.
*
* @return possible object is {@link Transforms }
*
*/
public Transforms getTransforms() {
return transforms;
}
/**
* Sets the value of the transforms property.
*
* @param value
* allowed object is {@link Transforms }
*
*/
public void setTransforms(Transforms value) {
this.transforms = value;
}
/**
* Gets the value of the digestMethod property.
*
* @return possible object is {@link DigestMethod }
*
*/
public DigestMethod getDigestMethod() {
return digestMethod;
}
/**
* Sets the value of the digestMethod property.
*
* @param value
* allowed object is {@link DigestMethod }
*
*/
public void setDigestMethod(DigestMethod value) {
this.digestMethod = value;
}
/**
* Gets the value of the digestValue property.
*
* @return possible object is {@link String }
*
*/
public String getDigestValue() {
return digestValue;
}
/**
* Sets the value of the digestValue property.
*
* @param value
* allowed object is {@link String }
*
*/
public void setDigestValue(String value) {
this.digestValue = value;
}
/**
* Gets the value of the uri property.
*
* @return possible object is {@link String }
*
*/
public String getURI() {
return uri;
}
/**
* Sets the value of the uri property.
*
* @param value
* allowed object is {@link String }
*
*/
public void setURI(String value) {
this.uri = value;
}
@Override
public String toString() {
return "Reference [transforms=" + transforms + ", digestMethod=" + digestMethod + ", digestValue=" + digestValue
+ ", uri=" + uri + "]";
}
}