Il giorno 02/mag/2012, alle ore 11.31, Antony Pulicken ha scritto:
> Hi,
>
> 1) We don't want to display/store some of the connector properties as CLEAR
> TEXT in Syncope. Can you please explain how this can be configured?
Hi Antony,
you can hide a connector attribute configuring it (on the connector
configuration class) to be confidential.
For example:
@ConfigurationProperty(order = 5, confidential = true,
displayMessageKey = "PASSWORD_DISPLAY",
helpMessageKey = "PASSWORD_HELP")
public GuardedString getPassword() {
return this.password;
}
Please, consider that in this way you can solve the problem related to the
"display" but not to the "store".
I think that the connector framework doesn't give the possibility to store a
value ciphering it before.
> 2) We have to do the same for some user attributes as well ? Is this possible
> ?
You have to customize the console.
Regards,
F.