Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1-b02-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: 2011.04.04 at 04:52:17 PM IST 
//


package in.shop2020.metamodel.jaxb.facets;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * <p>Java class for FacetSlideDefinitionType complex type.
 * 
 * <p>The following schema fragment specifies the expected content contained within this class.
 * 
 * <pre>
 * &lt;complexType name="FacetSlideDefinitionType">
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;element name="SlideDefinitionID" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         &lt;element name="IRMetaDataRuleID" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         &lt;element name="IRDataRuleID" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FacetSlideDefinitionType", propOrder = {
    "slideDefinitionID",
    "irMetaDataRuleID",
    "irDataRuleID"
})
public class FacetSlideDefinitionType {

    @XmlElement(name = "SlideDefinitionID")
    protected long slideDefinitionID;
    @XmlElement(name = "IRMetaDataRuleID")
    protected long irMetaDataRuleID;
    @XmlElement(name = "IRDataRuleID")
    protected long irDataRuleID;

    /**
     * Gets the value of the slideDefinitionID property.
     * 
     */
    public long getSlideDefinitionID() {
        return slideDefinitionID;
    }

    /**
     * Sets the value of the slideDefinitionID property.
     * 
     */
    public void setSlideDefinitionID(long value) {
        this.slideDefinitionID = value;
    }

    /**
     * Gets the value of the irMetaDataRuleID property.
     * 
     */
    public long getIRMetaDataRuleID() {
        return irMetaDataRuleID;
    }

    /**
     * Sets the value of the irMetaDataRuleID property.
     * 
     */
    public void setIRMetaDataRuleID(long value) {
        this.irMetaDataRuleID = value;
    }

    /**
     * Gets the value of the irDataRuleID property.
     * 
     */
    public long getIRDataRuleID() {
        return irDataRuleID;
    }

    /**
     * Sets the value of the irDataRuleID property.
     * 
     */
    public void setIRDataRuleID(long value) {
        this.irDataRuleID = value;
    }

}