/** * 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> * <complexType name="DerivedKeyTokenType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd}SecurityTokenReference" minOccurs="0"/> * <element name="Properties" type="{http://schemas.xmlsoap.org/ws/2005/02/sc}PropertiesType" minOccurs="0"/> * <sequence minOccurs="0"> * <choice> * <element name="Generation" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/> * <element name="Offset" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/> * </choice> * <element name="Length" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" minOccurs="0"/> * </sequence> * <element ref="{http://schemas.xmlsoap.org/ws/2005/02/sc}Label" minOccurs="0"/> * <element ref="{http://schemas.xmlsoap.org/ws/2005/02/sc}Nonce" minOccurs="0"/> * </sequence> * <attribute ref="{http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd}Id"/> * <attribute name="Algorithm" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> * </restriction> * </complexContent> * </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") private SecurityTokenReferenceType securityTokenReference; @XmlElement(name = "Properties") private PropertiesType properties; @XmlElement(name = "Generation") @XmlSchemaType(name = "unsignedLong") private BigInteger generation; @XmlElement(name = "Offset") @XmlSchemaType(name = "unsignedLong") private BigInteger offset; @XmlElement(name = "Length") @XmlSchemaType(name = "unsignedLong") private BigInteger length; @XmlElement(name = "Label") private String label; @XmlElement(name = "Nonce") private 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") private String id; @XmlAttribute(name = "Algorithm") @XmlSchemaType(name = "anyURI") private 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; } }