I was trying to use the properties set in the YAML file through the `Registration` class inside `Saml2RelyingPartyProperties` class. The problem is that the method has only package visibility and is not public. ``` public Signing getSigning() { return this.signing; } --> Identityprovider getIdentityprovider() { return this.identityprovider; } public static class Signing { ``` P.S. I'm not sure if there is a reason to not make this public.