Try OpenEdge Now
BPM Events User's Guide
Accessing Java objects and EJB components
:
Rule language extensions
:
Static method invocation or property access
Static method invocation or property access
The method or property must be public. Note the class name, used with the "qualifier" notation:
Val res1 = ~MyClass::MyStaticMethod();
Val res2 = ~MyClass::MyStaticProperty;
….
If (~MyClass::MyStaticProperty > 123)
Then {…}