blob: 4f0fa870c2222f5a99de87fa18d4fbddf58e52fb [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.6
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2014.03.27 at 03:31:23 PM GMT
//
package org.apache.wss4j.binding.wssc200502;
import java.math.BigInteger;
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.XmlID;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.apache.wss4j.binding.wss10.SecurityTokenReferenceType;
import org.apache.wss4j.binding.wssc.AbstractDerivedKeyTokenType;
/**
* <p>Java class for DerivedKeyTokenType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="DerivedKeyTokenType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element ref="{http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd}SecurityTokenReference" minOccurs="0"/>
* &lt;element name="Properties" type="{http://schemas.xmlsoap.org/ws/2005/02/sc}PropertiesType" minOccurs="0"/>
* &lt;sequence minOccurs="0">
* &lt;choice>
* &lt;element name="Generation" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;element name="Offset" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;/choice>
* &lt;element name="Length" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" minOccurs="0"/>
* &lt;/sequence>
* &lt;element ref="{http://schemas.xmlsoap.org/ws/2005/02/sc}Label" minOccurs="0"/>
* &lt;element ref="{http://schemas.xmlsoap.org/ws/2005/02/sc}Nonce" minOccurs="0"/>
* &lt;/sequence>
* &lt;attribute ref="{http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd}Id"/>
* &lt;attribute name="Algorithm" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DerivedKeyTokenType", propOrder = {
"securityTokenReference",
"properties",
"generation",
"offset",
"length",
"label",
"nonce"
})
public class DerivedKeyTokenType
extends AbstractDerivedKeyTokenType
{
@XmlElement(name = "SecurityTokenReference", namespace = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd")
protected SecurityTokenReferenceType securityTokenReference;
@XmlElement(name = "Properties")
protected PropertiesType properties;
@XmlElement(name = "Generation")
@XmlSchemaType(name = "unsignedLong")
protected BigInteger generation;
@XmlElement(name = "Offset")
@XmlSchemaType(name = "unsignedLong")
protected BigInteger offset;
@XmlElement(name = "Length")
@XmlSchemaType(name = "unsignedLong")
protected BigInteger length;
@XmlElement(name = "Label")
protected String label;
@XmlElement(name = "Nonce")
protected byte[] nonce;
@XmlAttribute(name = "Id", namespace = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
@XmlSchemaType(name = "ID")
protected String id;
@XmlAttribute(name = "Algorithm")
@XmlSchemaType(name = "anyURI")
protected String algorithm;
/**
* Gets the value of the securityTokenReference property.
*
* @return
* possible object is
* {@link SecurityTokenReferenceType }
*
*/
public SecurityTokenReferenceType getSecurityTokenReference() {
return securityTokenReference;
}
/**
* Sets the value of the securityTokenReference property.
*
* @param value
* allowed object is
* {@link SecurityTokenReferenceType }
*
*/
public void setSecurityTokenReference(SecurityTokenReferenceType value) {
this.securityTokenReference = value;
}
/**
* Gets the value of the properties property.
*
* @return
* possible object is
* {@link PropertiesType }
*
*/
public PropertiesType getProperties() {
return properties;
}
/**
* Sets the value of the properties property.
*
* @param value
* allowed object is
* {@link PropertiesType }
*
*/
public void setProperties(PropertiesType value) {
this.properties = value;
}
/**
* Gets the value of the generation property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getGeneration() {
return generation;
}
/**
* Sets the value of the generation property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setGeneration(BigInteger value) {
this.generation = value;
}
/**
* Gets the value of the offset property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getOffset() {
return offset;
}
/**
* Sets the value of the offset property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setOffset(BigInteger value) {
this.offset = value;
}
/**
* Gets the value of the length property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getLength() {
return length;
}
/**
* Sets the value of the length property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setLength(BigInteger value) {
this.length = value;
}
/**
* Gets the value of the label property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLabel() {
return label;
}
/**
* Sets the value of the label property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLabel(String value) {
this.label = value;
}
/**
* Gets the value of the nonce property.
*
* @return
* possible object is
* byte[]
*/
public byte[] getNonce() {
return nonce;
}
/**
* Sets the value of the nonce property.
*
* @param value
* allowed object is
* byte[]
*/
public void setNonce(byte[] value) {
this.nonce = value;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
/**
* Gets the value of the algorithm property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAlgorithm() {
return algorithm;
}
/**
* Sets the value of the algorithm property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAlgorithm(String value) {
this.algorithm = value;
}
}