public AppClientContainerBuilder clientCredentials(final String user, final char[] password, final String realm) {
// this.clientCredential = new ClientCredential()
// this.user = user;
// this.password = password;
// this.realmName = realm;
ClientCredential cc = new ClientCredential(user, new XML.Password(password), realm);
return clientCredentials(cc);
}