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

com.microsoft.windowsazure.services.servicebus.implementation.RuleDescription Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.6 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2014.05.07 at 03:44:57 PM PDT 
//


package com.microsoft.windowsazure.services.servicebus.implementation;

import java.util.Calendar;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * 

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"/>
 *         <element name="Tag" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="CreatedAt" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RuleDescription", propOrder = { "filter", "action", "tag", "name", "createdAt" }) @XmlRootElement(name = "RuleDescription") public class RuleDescription { @XmlElement(name = "Filter") protected Filter filter; @XmlElement(name = "Action") protected RuleAction action; @XmlElement(name = "Tag") protected String tag; @XmlElement(name = "Name") protected String name; @XmlElement(name = "CreatedAt", type = String.class) @XmlJavaTypeAdapter(Adapter1 .class) @XmlSchemaType(name = "dateTime") protected Calendar createdAt; /** * 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; } /** * Gets the value of the tag property. * * @return * possible object is * {@link String } * */ public String getTag() { return tag; } /** * Sets the value of the tag property. * * @param value * allowed object is * {@link String } * */ public void setTag(String value) { this.tag = 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; } /** * Gets the value of the createdAt property. * * @return * possible object is * {@link String } * */ public Calendar getCreatedAt() { return createdAt; } /** * Sets the value of the createdAt property. * * @param value * allowed object is * {@link String } * */ public void setCreatedAt(Calendar value) { this.createdAt = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy