Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion openid-connect-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<artifactId>openid-connect-parent</artifactId>
<groupId>org.mitre</groupId>
<version>1.3.7.cnaf-20250915</version>
<version>1.3.7.cnaf-20251119</version>
<relativePath>..</relativePath>
</parent>
<artifactId>openid-connect-client</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion openid-connect-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<artifactId>openid-connect-parent</artifactId>
<groupId>org.mitre</groupId>
<version>1.3.7.cnaf-20250915</version>
<version>1.3.7.cnaf-20251119</version>
<relativePath>..</relativePath>
</parent>
<artifactId>openid-connect-common</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,10 +156,12 @@ public class ClientDetailsEntity implements ClientDetails {
private boolean clearAccessTokensOnRefresh = true; // do we clear access tokens on refresh?
private Integer deviceCodeValiditySeconds; // timeout for device codes
private transient ClientLastUsedEntity clientLastUsed; // last used info
private transient ClientRelyingPartyEntity clientRelyingParty; // relying party info (entity_id, expiration)
private transient ClientRelyingPartyEntity clientRelyingParty; // relying party info (entity_id,
// expiration)
private boolean active = true;
private Date statusChangedOn;
private String statusChangedBy;
private boolean upScopingEnabled = true; // if upscoping should be allowed

/** fields for UMA */
private Set<String> claimsRedirectUris;
Expand Down Expand Up @@ -1006,6 +1008,25 @@ public void setActive(boolean active) {
this.active = active;
}

/**
*
* @return the upScopingEnabled
*/
@Basic
@Column(name = "upScopingEnabled")
public boolean isUpScopingEnabled() {
return upScopingEnabled;
}

/**
*
* @param upScopingEnabled the upScopingEnabled to set
*/

public void setUpScopingEnabled(boolean upScopingEnabled) {
this.upScopingEnabled = upScopingEnabled;
}

/**
* @return the status changed on
*/
Expand Down
2 changes: 1 addition & 1 deletion openid-connect-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.mitre</groupId>
<artifactId>openid-connect-parent</artifactId>
<version>1.3.7.cnaf-20250915</version>
<version>1.3.7.cnaf-20251119</version>
<relativePath>..</relativePath>
</parent>
<build>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.mitre</groupId>
<artifactId>openid-connect-parent</artifactId>
<version>1.3.7.cnaf-20250915</version>
<version>1.3.7.cnaf-20251119</version>
<name>MITREid Connect</name>
<packaging>pom</packaging>
<parent>
Expand Down