Skip to content

Commit

Permalink
Merge pull request #214 from emilm/feature-confirmationhandler-fix
Browse files Browse the repository at this point in the history
Fix SOAP serialization for #213
  • Loading branch information
TVolden authored Sep 23, 2022
2 parents d655eb1 + cb92d04 commit cfff07b
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,15 @@ of this software and associated documentation files (the "Software"), to deal
SOFTWARE.
*/


import javax.xml.bind.annotation.XmlTransient;

/** Interface used to flag a Model as a Confirmation payload. */

public abstract class Confirmation implements Validatable {
private transient ConfirmationCompletedHandler completedHandler;

@XmlTransient
public ConfirmationCompletedHandler getCompletedHandler() {
return completedHandler;
}
Expand Down

0 comments on commit cfff07b

Please sign in to comment.