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

fix(oxtrust): rollback saml slo support #2433

Merged
merged 1 commit into from
Aug 27, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,6 @@ public class GluuSAMLTrustRelationship extends InumEntry implements Serializable
@AttributeName(name = "oxAuthPostLogoutRedirectURI")
private String spLogoutURL;

@Pattern(regexp = "^$|(^(https?|http)://[-a-zA-Z0-9+&@#/%?=~_|!:,.;]*[-a-zA-Z0-9+&@#/%=~_|])", message = "Please enter a valid url, including protocol (http/https)")
@AttributeName(name="spLogoutRedirectUrl")
private String spLogoutRedirectUrl;

@AttributeName(name = "gluuValidationLog")
private List<String> validationLog;

Expand Down Expand Up @@ -364,17 +360,6 @@ public void setSpLogoutURL(String spLogoutURL) {
this.spLogoutURL = spLogoutURL;
}

public String getSpLogoutRedirectUrl() {


return spLogoutRedirectUrl;
}

public void setSpLogoutRedirectUrl(String spLogoutRedirectUrl) {

this.spLogoutRedirectUrl = spLogoutRedirectUrl;
}

public String getSpMetaDataFN() {
return spMetaDataFN;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -330,14 +330,6 @@ input[submit] {
id="spLogoutURLId" />
</ox:decorate>
</h:panelGroup>
<h:panelGroup id="spSingleLogoutRedirectUrl">
<ox:decorate id="LogoutRedirectUrl"
label="#{msgs['trustmanager.spLogoutRedirectUrl']}">
<h:inputText styleClass="form-control"
value="#{_trustRelationship.spLogoutRedirectUrl}" size="40"
id="spLogoutRedirectUrlId" />
</ox:decorate>
</h:panelGroup>
<ox:decorate id="configureSpecific"
label="#{msgs['trustmanager.configureRelyingParty']}">
<h:panelGrid columns="2" width="100%">
Expand Down
Loading