diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/security/saml2/Saml2RelyingPartyProperties.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/security/saml2/Saml2RelyingPartyProperties.java index 1c22d53558..f521d8a992 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/security/saml2/Saml2RelyingPartyProperties.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/security/saml2/Saml2RelyingPartyProperties.java @@ -51,13 +51,9 @@ public class Saml2RelyingPartyProperties { public static class Registration { /** - * Relying party's EntityID. - * - * This value may contain a number of placeholders. They are: baseUrl, - * registrationId, baseScheme, baseHost, and basePort. - * - * The default value is - * {baseUrl}/saml2/service-provider-metadata/{registrationId}. + * Relying party's entity ID template. Can generate its entity ID based on + * possible variables of "baseUrl", "registrationId", "baseScheme", "baseHost", + * and "basePort". */ private String relyingPartyEntityId = "{baseUrl}/saml2/service-provider-metadata/{registrationId}";