Class AbstractProperty

    • Field Detail

      • log

        protected static final Logger log
    • Constructor Detail

      • AbstractProperty

        public AbstractProperty​(String name)
      • AbstractProperty

        public AbstractProperty()
    • Method Detail

      • isEqualType

        protected boolean isEqualType​(JMeterProperty prop)
      • isRunningVersion

        public boolean isRunningVersion()
        Returns whether the property is a running version.
        Specified by:
        isRunningVersion in interface JMeterProperty
        Returns:
        flag whether this property is a running version
      • getName

        public String getName()
        The name of the property. Typically this should match the name that keys the property's location in the test elements Map.
        Specified by:
        getName in interface JMeterProperty
        Returns:
        the name of the property
      • setName

        public void setName​(String name)
        Set the property name.
        Specified by:
        setName in interface JMeterProperty
        Parameters:
        name - the name of the property
      • setRunningVersion

        public void setRunningVersion​(boolean runningVersion)
        Make the property a running version or turn it off as the running version. A property that is made a running version will preserve the current state in such a way that it is retrievable by a future call to 'recoverRunningVersion()'. Additionally, a property that is a running version will resolve all functions prior to returning it's property value. A non-running version property will return functions as their uncompiled string representation.
        Specified by:
        setRunningVersion in interface JMeterProperty
        Parameters:
        runningVersion - flag whether this property is a running version
      • equals

        public boolean equals​(Object o)
        Determines if the two objects are equal by comparing names and values
        Overrides:
        equals in class Object
        Returns:
        true if names are equal and values are equal (or both null)
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • getPropertyType

        protected Class<? extends JMeterProperty> getPropertyType()
        Get the property type for this property. Used to convert raw values into JMeterProperties.
        Returns:
        property type of this property
      • normalizeList

        protected Collection<JMeterProperty> normalizeList​(Collection<?> coll)
        Convert a collection of objects into JMeterProperty objects.
        Parameters:
        coll - Collection of any type of object
        Returns:
        Collection of JMeterProperty objects
      • normalizeMap

        protected Map<String,​JMeterProperty> normalizeMap​(Map<?,​?> coll)
        Given a Map, it converts the Map into a collection of JMeterProperty objects, appropriate for a MapProperty object.
        Parameters:
        coll - Map to convert
        Returns:
        converted Map
      • makeProperty

        protected static JMeterProperty makeProperty​(Object item)
        Create a JMeterProperty from an object. The object can be one of:
        • JMeterProperty - returned unchanged
        • TestElement => TestElementProperty with the same name
        • Map|Collection => Map|CollectionProperty with the name = item.hashCode
        Parameters:
        item - object to be turned into a propery
        Returns:
        the JMeterProperty
      • toString

        public String toString()
        Provides the string representation of the property.
        Overrides:
        toString in class Object
        Returns:
        the string value
      • mergeIn

        public void mergeIn​(JMeterProperty prop)
        Take the given property object and merge it's value with the current property object. For most property types, this will simply be ignored. But for collection properties and test element properties, more complex behavior is required.
        Specified by:
        mergeIn in interface JMeterProperty
        Parameters:
        prop - the property object to merge into this property