]
r searls commented on JBWS-4003:
--------------------------------
This exists in current master version 5.3.1-SNAPSHOT
[API] Add ClientConfigFeature(String configName) constructor
------------------------------------------------------------
Key: JBWS-4003
URL:
https://issues.jboss.org/browse/JBWS-4003
Project: JBoss Web Services
Issue Type: Feature Request
Reporter: Willem Salembier
Priority: Major
For predefined {{client-config}} settings in {{standalone.xml}}, it would be more elegant
to add a new constructor in {{org.jboss.ws.api.configuration.ClientConfigFeature}} that
only takes a configName and forces {{configureProperties=true}}.
{code}
public ClientConfigFeature(String configName) {
this(null, configName, true);
}
{code}