@LRA(LRA.Type.MANDATORY, // requires an active context before method can be executed
end = true) // end the received LRA when the method finishes
should be
@LRA(value=LRA.Type.MANDATORY, // requires an active context before method can be executed
end = true) // end the received LRA when the method finishes
The following line is incorrect
@LRA(LRA.Type.NESTED, end = true)should be
@LRA(value = LRA.Type.NESTED, end = true)
In LRA, I spotted the following minor mistakes:
should be
should be
@LRA(LRA.Type.NESTED, end = true)
should be@LRA(value = LRA.Type.NESTED, end = true)