org.xmlnetwork.Authentication Maven / Gradle / Ivy
Show all versions of fractal-bf-hdl-model Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-b01-fcs
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2008.06.03 at 04:27:27 PM CEST
//
package org.xmlnetwork;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.List;
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.XmlType;
/**
* Java class for authentication complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="authentication">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="type">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="text"/>
* <enumeration value="md5"/>
* </restriction>
* </simpleType>
* </element>
* <choice>
* <element name="key" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="key_chain">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="key_list">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="key" maxOccurs="unbounded">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="key_string" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="accept_lifetime" type="{http://www.xmlnetwork.org}lifetime" minOccurs="0"/>
* <element name="send_lifetime" type="{http://www.xmlnetwork.org}lifetime" minOccurs="0"/>
* </sequence>
* <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" />
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </choice>
* <element name="applyToInterface">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="interface" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "authentication", propOrder = {
"type",
"key",
"keyChain",
"applyToInterface"
})
public class Authentication {
@XmlElement(required = true)
protected String type;
protected String key;
@XmlElement(name = "key_chain")
protected Authentication.KeyChain keyChain;
@XmlElement(required = true)
protected Authentication.ApplyToInterface applyToInterface;
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
/**
* Gets the value of the key property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKey() {
return key;
}
/**
* Sets the value of the key property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKey(String value) {
this.key = value;
}
/**
* Gets the value of the keyChain property.
*
* @return
* possible object is
* {@link Authentication.KeyChain }
*
*/
public Authentication.KeyChain getKeyChain() {
return keyChain;
}
/**
* Sets the value of the keyChain property.
*
* @param value
* allowed object is
* {@link Authentication.KeyChain }
*
*/
public void setKeyChain(Authentication.KeyChain value) {
this.keyChain = value;
}
/**
* Gets the value of the applyToInterface property.
*
* @return
* possible object is
* {@link Authentication.ApplyToInterface }
*
*/
public Authentication.ApplyToInterface getApplyToInterface() {
return applyToInterface;
}
/**
* Sets the value of the applyToInterface property.
*
* @param value
* allowed object is
* {@link Authentication.ApplyToInterface }
*
*/
public void setApplyToInterface(Authentication.ApplyToInterface value) {
this.applyToInterface = value;
}
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="interface" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"_interface"
})
public static class ApplyToInterface {
@XmlElement(name = "interface", required = true)
protected List _interface;
/**
* Gets the value of the interface property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the interface property.
*
*
* For example, to add a new item, do as follows:
*
* getInterface().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getInterface() {
if (_interface == null) {
_interface = new ArrayList();
}
return this._interface;
}
}
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="key_list">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="key" maxOccurs="unbounded">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="key_string" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="accept_lifetime" type="{http://www.xmlnetwork.org}lifetime" minOccurs="0"/>
* <element name="send_lifetime" type="{http://www.xmlnetwork.org}lifetime" minOccurs="0"/>
* </sequence>
* <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" />
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"name",
"keyList"
})
public static class KeyChain {
@XmlElement(required = true)
protected String name;
@XmlElement(name = "key_list", required = true)
protected Authentication.KeyChain.KeyList keyList;
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the keyList property.
*
* @return
* possible object is
* {@link Authentication.KeyChain.KeyList }
*
*/
public Authentication.KeyChain.KeyList getKeyList() {
return keyList;
}
/**
* Sets the value of the keyList property.
*
* @param value
* allowed object is
* {@link Authentication.KeyChain.KeyList }
*
*/
public void setKeyList(Authentication.KeyChain.KeyList value) {
this.keyList = value;
}
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="key" maxOccurs="unbounded">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="key_string" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="accept_lifetime" type="{http://www.xmlnetwork.org}lifetime" minOccurs="0"/>
* <element name="send_lifetime" type="{http://www.xmlnetwork.org}lifetime" minOccurs="0"/>
* </sequence>
* <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" />
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"key"
})
public static class KeyList {
@XmlElement(required = true)
protected List key;
/**
* Gets the value of the key property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the key property.
*
*
* For example, to add a new item, do as follows:
*
* getKey().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Authentication.KeyChain.KeyList.Key }
*
*
*/
public List getKey() {
if (key == null) {
key = new ArrayList();
}
return this.key;
}
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="key_string" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="accept_lifetime" type="{http://www.xmlnetwork.org}lifetime" minOccurs="0"/>
* <element name="send_lifetime" type="{http://www.xmlnetwork.org}lifetime" minOccurs="0"/>
* </sequence>
* <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"keyString",
"acceptLifetime",
"sendLifetime"
})
public static class Key {
@XmlElement(name = "key_string", required = true)
protected String keyString;
@XmlElement(name = "accept_lifetime")
protected Lifetime acceptLifetime;
@XmlElement(name = "send_lifetime")
protected Lifetime sendLifetime;
@XmlAttribute
protected BigInteger id;
/**
* Gets the value of the keyString property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKeyString() {
return keyString;
}
/**
* Sets the value of the keyString property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKeyString(String value) {
this.keyString = value;
}
/**
* Gets the value of the acceptLifetime property.
*
* @return
* possible object is
* {@link Lifetime }
*
*/
public Lifetime getAcceptLifetime() {
return acceptLifetime;
}
/**
* Sets the value of the acceptLifetime property.
*
* @param value
* allowed object is
* {@link Lifetime }
*
*/
public void setAcceptLifetime(Lifetime value) {
this.acceptLifetime = value;
}
/**
* Gets the value of the sendLifetime property.
*
* @return
* possible object is
* {@link Lifetime }
*
*/
public Lifetime getSendLifetime() {
return sendLifetime;
}
/**
* Sets the value of the sendLifetime property.
*
* @param value
* allowed object is
* {@link Lifetime }
*
*/
public void setSendLifetime(Lifetime value) {
this.sendLifetime = value;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setId(BigInteger value) {
this.id = value;
}
}
}
}
}