Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JBTM-3234 Coordinator#getNestedLRAStatus should return ParticipantStatus #1538

Merged
merged 1 commit into from
Dec 13, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
import java.util.concurrent.TimeUnit;

import org.eclipse.microprofile.lra.annotation.LRAStatus;
import org.eclipse.microprofile.lra.annotation.ParticipantStatus;
import org.eclipse.microprofile.openapi.annotations.Operation;
import org.eclipse.microprofile.openapi.annotations.enums.SchemaType;
import org.eclipse.microprofile.openapi.annotations.headers.Header;
Expand Down Expand Up @@ -345,7 +346,20 @@ public Response getNestedLRAStatus(@PathParam("NestedLraId")String nestedLraId)
"getNestedLRAStatus", "The LRA is still active")).build());
}

return Response.ok(lra.getLRAStatus().name()).build();
return Response.ok(mapToParticipantStatus(lra.getLRAStatus()).name()).build();
}

private ParticipantStatus mapToParticipantStatus(LRAStatus lraStatus) {
switch (lraStatus) {
case Active: return ParticipantStatus.Active;
case Closed: return ParticipantStatus.Completed;
case Cancelled: return ParticipantStatus.Compensated;
case Closing: return ParticipantStatus.Completing;
case Cancelling: return ParticipantStatus.Compensating;
case FailedToClose: return ParticipantStatus.FailedToComplete;
case FailedToCancel: return ParticipantStatus.FailedToCompensate;
default: return null;
}
}

@PUT
Expand Down