CmdbTypes Schema
LongCondition Complex Type
CmdbTypes Schema : LongCondition Complex Type

Glossary Item Box

Description

Condition of type Long
Namespace http://schemas.hp.com/ucmdb/1/types

Base Type

Diagram

longOperator Element value Element name Element Sequence condition Element Sequence LongCondition Complex Type

Overview

LongCondition Extension of Condition Complex Type
Condition of type Long
Sequence
Sequence
name xs:string
The property's name
value optional xs:long
The condition value to be compared to the CI or Relation's property value
longOperator Restriction of xs:string
Comparison, In, and IsNull operators

Used By

Source

<xs:complexType name="LongCondition" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>Condition of type Long</xs:documentation>
  </xs:annotation>
  <xs:complexContent>
    <xs:extension base="types:Condition">
      <xs:sequence>
        <xs:element name="condition" type="types:LongProp" />
        <xs:element name="longOperator">
          <xs:annotation>
            <xs:documentation>
                                Comparison, In, and IsNull operators
                            </xs:documentation>
          </xs:annotation>
          <xs:simpleType>
            <xs:restriction base="xs:string">
              <xs:enumeration value="Equal" />
              <xs:enumeration value="NotEqual" />
              <xs:enumeration value="Greater" />
              <xs:enumeration value="GreaterEqual" />
              <xs:enumeration value="Less" />
              <xs:enumeration value="LessEqual" />
              <xs:enumeration value="In" />
              <xs:enumeration value="IsNull" />
            </xs:restriction>
          </xs:simpleType>
        </xs:element>
      </xs:sequence>
    </xs:extension>
  </xs:complexContent>
</xs:complexType>

See Also