Automation Operation context in Studio and Java

I want to create a context variable using Studio automation operation and read/write them with a Java class generated via the IDE.

Also, I would like to create an operation context variable in JAVA and read/write them in a Studio automation operation.

References to code examples are ok, I haven't been looking in the correct places….:-/

0 votes

1 answers

26559 views

ANSWER

(shortened title)
04/12/2012



You have here source code examples of default operations available in studio. You can look around there are more other operations.

About your question to get the Operation context, you just have to ask to automation to inject into your operation:

@Context
protected OperationContext ctx;

And get your value from this object.

ctx.get("myValue");

I'm not sure to understand the second part of your question. Anyway I hope with our example, it will be fine.

0 votes



The ctx.put("myValue", value) I found in OperationContext.java answers my second questions.

As always thanks for the quick answer!

04/12/2012