org.xmlnetwork.Policy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of model Show documentation
Show all versions of model Show documentation
Support an hardware description language to automatically
configure bindings.
The newest version!
//
// 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.05.20 at 11:59:14 PM CEST
//
package org.xmlnetwork;
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.XmlType;
/**
* 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>
* <choice>
* <element ref="{http://www.xmlnetwork.org}Redistribution"/>
* <element ref="{http://www.xmlnetwork.org}Distribution"/>
* <element ref="{http://www.xmlnetwork.org}General"/>
* </choice>
* </sequence>
* <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"redistribution",
"distribution",
"general"
})
@XmlRootElement(name = "Policy")
public class Policy {
@XmlElement(name = "Redistribution")
protected RedistributionType redistribution;
@XmlElement(name = "Distribution")
protected Distribution distribution;
@XmlElement(name = "General")
protected GeneralType general;
@XmlAttribute
protected String name;
/**
* Gets the value of the redistribution property.
*
* @return
* possible object is
* {@link RedistributionType }
*
*/
public RedistributionType getRedistribution() {
return redistribution;
}
/**
* Sets the value of the redistribution property.
*
* @param value
* allowed object is
* {@link RedistributionType }
*
*/
public void setRedistribution(RedistributionType value) {
this.redistribution = value;
}
/**
* Gets the value of the distribution property.
*
* @return
* possible object is
* {@link Distribution }
*
*/
public Distribution getDistribution() {
return distribution;
}
/**
* Sets the value of the distribution property.
*
* @param value
* allowed object is
* {@link Distribution }
*
*/
public void setDistribution(Distribution value) {
this.distribution = value;
}
/**
* Gets the value of the general property.
*
* @return
* possible object is
* {@link GeneralType }
*
*/
public GeneralType getGeneral() {
return general;
}
/**
* Sets the value of the general property.
*
* @param value
* allowed object is
* {@link GeneralType }
*
*/
public void setGeneral(GeneralType value) {
this.general = value;
}
/**
* 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy