@@ -56,6 +56,9 @@ public class ClientAttributes implements Serializable {
5656 @ JsonProperty ("parScriptDns" )
5757 private List <String > parScriptDns = Lists .newArrayList ();
5858
59+ @ JsonProperty ("txTokenScriptDns" )
60+ private List <String > txTokenScriptDns = Lists .newArrayList ();
61+
5962 @ JsonProperty ("backchannelLogoutUri" )
6063 private List <String > backchannelLogoutUri ;
6164
@@ -475,6 +478,16 @@ public ClientAttributes setParScriptDns(List<String> parScriptDns) {
475478 return this ;
476479 }
477480
481+ public List <String > getTxTokenScriptDns () {
482+ if (txTokenScriptDns == null ) txTokenScriptDns = Lists .newArrayList ();
483+ return txTokenScriptDns ;
484+ }
485+
486+ public ClientAttributes setTxTokenScriptDns (List <String > txTokenScriptDns ) {
487+ this .txTokenScriptDns = txTokenScriptDns ;
488+ return this ;
489+ }
490+
478491 public Boolean getRunIntrospectionScriptBeforeJwtCreation () {
479492 if (runIntrospectionScriptBeforeJwtCreation == null ) {
480493 runIntrospectionScriptBeforeJwtCreation = false ;
@@ -602,6 +615,7 @@ public String toString() {
602615 ", updateTokenScriptDns=" + updateTokenScriptDns +
603616 ", logoutStatusJwtScriptDns=" + logoutStatusJwtScriptDns +
604617 ", parScriptDns=" + parScriptDns +
618+ ", txTokenScriptDns=" + txTokenScriptDns +
605619 ", backchannelLogoutUri=" + backchannelLogoutUri +
606620 ", backchannelLogoutSessionRequired=" + backchannelLogoutSessionRequired +
607621 ", additionalAudience=" + additionalAudience +
0 commit comments