* @return the {@code IdentityTrustManager} implementation to be used, or {@code null} if no
* {@code IdentityTrustManager} is available.
*/
public IdentityTrustManager getIdentityTrustManager()
{
IdentityTrustManager manager = null;
if (this.securityManagement != null)
manager = this.securityManagement.getIdentityTrustManager(this.name);
return manager;
}