This is an old revision of the document!
Scripts to Change Properties of ValueObjects
These examples demonstrate how to change ValueObject properties. ValueObjects (for example, LongValueObject,DoubleValueObject,and StringValueObject) all have these properties:
- Value
- Quality (0=good quality, all others are various levels of not good)
- Timestamp
- Color (usually null)
- Locale
- AlwaysSend (usually false, so the connector is in control of whether to pass the data or not)
Change the data quality of a value from good to bad
//this changes the data quality of the incoming ValueObject to bad quality var ValueObjectInterface = Java.type("com.ergotech.valueobjects.ValueObjectInterface"); vo=incomingValue; vo.setQuality(ValueObjectInterface.QUALITY_BAD); //bad quality is 2000 vo;