com.microsoft.windowsazure.services.serviceBus.implementation.RuleDescription Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of microsoft-windowsazure-api Show documentation
Show all versions of microsoft-windowsazure-api Show documentation
API for Microsoft Windows Azure Clients
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2013.03.26 at 10:53:39 PM UTC
//
package com.microsoft.windowsazure.services.serviceBus.implementation;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for RuleDescription complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="RuleDescription">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Filter" type="{http://schemas.microsoft.com/netservices/2010/10/servicebus/connect}Filter" minOccurs="0"/>
* <element name="Action" type="{http://schemas.microsoft.com/netservices/2010/10/servicebus/connect}RuleAction" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RuleDescription", propOrder = {
"filter",
"action"
})
public class RuleDescription {
@XmlElement(name = "Filter")
protected Filter filter;
@XmlElement(name = "Action")
protected RuleAction action;
/**
* Gets the value of the filter property.
*
* @return
* possible object is
* {@link Filter }
*
*/
public Filter getFilter() {
return filter;
}
/**
* Sets the value of the filter property.
*
* @param value
* allowed object is
* {@link Filter }
*
*/
public void setFilter(Filter value) {
this.filter = value;
}
/**
* Gets the value of the action property.
*
* @return
* possible object is
* {@link RuleAction }
*
*/
public RuleAction getAction() {
return action;
}
/**
* Sets the value of the action property.
*
* @param value
* allowed object is
* {@link RuleAction }
*
*/
public void setAction(RuleAction value) {
this.action = value;
}
}