|
|
@ -51,11 +51,10 @@ public class Saml2RelyingPartyProperties {
|
|
|
|
public static class Registration {
|
|
|
|
public static class Registration {
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Relying party's entity ID template. Can generate its entity ID based on
|
|
|
|
* Relying party's entity ID. The value may contain a number of placeholders. They
|
|
|
|
* possible variables of "baseUrl", "registrationId", "baseScheme", "baseHost",
|
|
|
|
* are "baseUrl", "registrationId", "baseScheme", "baseHost", and "basePort".
|
|
|
|
* and "basePort".
|
|
|
|
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
private String relyingPartyEntityId = "{baseUrl}/saml2/service-provider-metadata/{registrationId}";
|
|
|
|
private String entityId = "{baseUrl}/saml2/service-provider-metadata/{registrationId}";
|
|
|
|
|
|
|
|
|
|
|
|
private final Signing signing = new Signing();
|
|
|
|
private final Signing signing = new Signing();
|
|
|
|
|
|
|
|
|
|
|
@ -64,12 +63,12 @@ public class Saml2RelyingPartyProperties {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
private final Identityprovider identityprovider = new Identityprovider();
|
|
|
|
private final Identityprovider identityprovider = new Identityprovider();
|
|
|
|
|
|
|
|
|
|
|
|
public String getRelyingPartyEntityId() {
|
|
|
|
public String getEntityId() {
|
|
|
|
return this.relyingPartyEntityId;
|
|
|
|
return this.entityId;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setRelyingPartyEntityId(String entityId) {
|
|
|
|
public void setEntityId(String entityId) {
|
|
|
|
this.relyingPartyEntityId = entityId;
|
|
|
|
this.entityId = entityId;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public Signing getSigning() {
|
|
|
|
public Signing getSigning() {
|
|
|
|