// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.5-b01-fcs // 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: 2008.05.01 at 05:38:23 PM WEST // package org.openxdm.xcap.client.appusage.presrules.jaxb.commonpolicy; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlID; import javax.xml.bind.annotation.XmlRootElement; 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; /** * <p>Java class for ruleType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ruleType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="conditions" type="{urn:ietf:params:xml:ns:common-policy}conditionsType" minOccurs="0"/> * <element name="actions" type="{urn:ietf:params:xml:ns:common-policy}extensibleType" minOccurs="0"/> * <element name="transformations" type="{urn:ietf:params:xml:ns:common-policy}extensibleType" minOccurs="0"/> * </sequence> * <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ruleType", propOrder = { "conditions", "actions", "transformations" }) @XmlRootElement(name = "rule",namespace="urn:ietf:params:xml:ns:common-policy") public class RuleType { protected ConditionsType conditions; protected ActionsType actions; protected TransformationsType transformations; @XmlAttribute(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID @XmlSchemaType(name = "ID") protected String id; /** * Gets the value of the conditions property. * * @return * possible object is * {@link ConditionsType } * */ public ConditionsType getConditions() { return conditions; } /** * Sets the value of the conditions property. * * @param value * allowed object is * {@link ConditionsType } * */ public void setConditions(ConditionsType value) { this.conditions = value; } /** * Gets the value of the actions property. * * @return * possible object is * {@link ActionsType } * */ public ActionsType getActions() { return actions; } /** * Sets the value of the actions property. * * @param value * allowed object is * {@link ActionsType } * */ public void setActions(ActionsType value) { this.actions = value; } /** * Gets the value of the transformations property. * * @return * possible object is * {@link TransformationsType } * */ public TransformationsType getTransformations() { return transformations; } /** * Sets the value of the transformations property. * * @param value * allowed object is * {@link TransformationsType } * */ public void setTransformations(TransformationsType value) { this.transformations = 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; } }