STSClientConfig has the ability to either programatically construct the configuration needed for {@link STSClient} or parse a file containing the configuration parameters.
Configure programatically
Example:
{@code Builder builder = new STSClientConfig.Builder(); builder.serviceName("JBossSTS"); builder.portName("JBossSTSPort"); ... STSClientConfig config = builder.build();}
Configure from file
Example:
{@code STSClientConfig config = new STSClientConfig.Builder().build(configFile);}
@author
Daniel Bevenius