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

com.att.scld.grm.policy.v1.CriteriaRule Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.10.24 at 10:05:09 AM EDT 
//


package com.att.scld.grm.policy.v1;

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 CriteriaRule complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="CriteriaRule">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="type" type="{http://scld.att.com/grm/policy/v1}CriteriaRuleType"/>
 *         <element name="operator" type="{http://scld.att.com/grm/policy/v1}Operator"/>
 *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CriteriaRule", propOrder = { "name", "type", "operator", "value" }) public class CriteriaRule { @XmlElement(required = true) protected String name; @XmlElement(required = true) protected CriteriaRuleType type; @XmlElement(required = true) protected Operator operator; @XmlElement(required = true) protected String 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 type property. * * @return * possible object is * {@link CriteriaRuleType } * */ public CriteriaRuleType getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link CriteriaRuleType } * */ public void setType(CriteriaRuleType value) { this.type = value; } /** * Gets the value of the operator property. * * @return * possible object is * {@link Operator } * */ public Operator getOperator() { return operator; } /** * Sets the value of the operator property. * * @param value * allowed object is * {@link Operator } * */ public void setOperator(Operator value) { this.operator = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy