All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.xml.ws.security.secconv.impl.wssx.bindings.DerivedKeyTokenType Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
/*
 * Copyright (c) 2010, 2021 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Distribution License v. 1.0, which is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v@@BUILD_VERSION@@ 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2007.08.10 at 08:10:03 PM IST 
//


package com.sun.xml.ws.security.secconv.impl.wssx.bindings;

import java.math.BigInteger;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlID;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import com.sun.xml.ws.security.secext10.SecurityTokenReferenceType;


/**
 * 

Java class for DerivedKeyTokenType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

{@code
 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *           
 *             
 *             
 *           
 *           
 *         
 *         
 *         
 *       
 *       
 *       
 *     
 *   
 * 
 * }
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DerivedKeyTokenType", propOrder = { "securityTokenReference", "properties", "generation", "offset", "length", "label", "nonce" }) public class DerivedKeyTokenType { @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", namespace = "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512") protected PropertiesType properties; @XmlElement(name = "Generation", namespace = "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512") protected BigInteger generation; @XmlElement(name = "Offset", namespace = "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512") protected BigInteger offset; @XmlElement(name = "Length", namespace = "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512") protected BigInteger length; @XmlElement(name = "Label", namespace = "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512") protected String label; @XmlElement(name = "Nonce", namespace = "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512") protected byte[] nonce; @XmlAttribute(name = "Algorithm") protected String algorithm; @XmlAttribute(name = "Id", namespace = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID protected String id; /** * 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 = ((byte[]) 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; } /** * 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy