Skip to content

Commit 2ec0422

Browse files
committed
added tx token script to client
1 parent e3eeb23 commit 2ec0422

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

jans-auth-server/persistence-model/src/main/java/io/jans/as/persistence/model/ClientAttributes.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)