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