Multiple choice technology platforms and products

Which of the following methods from DomainObject/BusinessObject class will get the attribute value of a Bus Object

  1. getAttributeValue(context, Attributename)

  2. getInfo(context,"attribute[" + AttributeName +"].value")

  3. getAttributeValues(context, boolean)

  4. All the above.

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

All listed methods (D) can retrieve attribute values from DomainObject/BusinessObject classes. getAttributeValue gets single attributes, getInfo with attribute path syntax retrieves values, and getAttributeValues returns multiple values. Different methods serve different use cases.