Class Qualifier

java.lang.Object
com.oracle.communications.brm.cc.model.Qualifier
All Implemented Interfaces:
Serializable

public class Qualifier extends Object implements Serializable
The key-value pairs and comparison operators to be evaluated against customer data during the installment creation.

Java class for qualifier complex type

.

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

 <complexType name="qualifier">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="key" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="dataType" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
         <element name="operator" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 
See Also:
  • Field Details

    • key

      protected String key
      The name or the identifier from a storable class.
    • value

      protected String value
      The reference value to be evaluated.
    • dataType

      protected Integer dataType
      The data type of the value. Allowed values:
      • 1 (Integer)
      • 3 (Enumerated)
      • 5 (String)
      • 7 (POID)
      • 8 (Timestamp)
      • 14 (Decimal)
    • operator

      protected Integer operator
      The operator for the qualifier. Allowed values:
      • 0 (Equals)
      • 1 (Less than)
      • 2 (Greater than)
      • 3 (Less than or equals)
      • 4 (Greater than or equals)
      • 5 (Not equal)
      • 6 (Contained in string)
      • 7 (Like)
  • Constructor Details

    • Qualifier

      public Qualifier()
  • Method Details

    • getKey

      public String getKey()
      The name or the identifier from a storable class.
      Returns:
      possible object is String
    • setKey

      public void setKey(String value)
      Sets the value of the key property.
      Parameters:
      value - allowed object is String
      See Also:
    • getValue

      public String getValue()
      The reference value to be evaluated.
      Returns:
      possible object is String
    • setValue

      public void setValue(String value)
      Sets the value of the value property.
      Parameters:
      value - allowed object is String
      See Also:
    • getDataType

      public Integer getDataType()
      The data type of the value. Allowed values:
      • 1 (Integer)
      • 3 (Enumerated)
      • 5 (String)
      • 7 (POID)
      • 8 (Timestamp)
      • 14 (Decimal)
      Returns:
      possible object is Integer
    • setDataType

      public void setDataType(Integer value)
      Sets the value of the dataType property.
      Parameters:
      value - allowed object is Integer
      See Also:
    • getOperator

      public Integer getOperator()
      The operator for the qualifier. Allowed values:
      • 0 (Equals)
      • 1 (Less than)
      • 2 (Greater than)
      • 3 (Less than or equals)
      • 4 (Greater than or equals)
      • 5 (Not equal)
      • 6 (Contained in string)
      • 7 (Like)
      Returns:
      possible object is Integer
    • setOperator

      public void setOperator(Integer value)
      Sets the value of the operator property.
      Parameters:
      value - allowed object is Integer
      See Also: