Author: alessio.soldano(a)jboss.com
Date: 2013-01-25 15:46:10 -0500 (Fri, 25 Jan 2013)
New Revision: 17261
Modified:
api/trunk/src/main/java/org/jboss/ws/api/configuration/ClientConfigFeature.java
Log:
[JBWS-3592] Some additional javadoc
Modified: api/trunk/src/main/java/org/jboss/ws/api/configuration/ClientConfigFeature.java
===================================================================
---
api/trunk/src/main/java/org/jboss/ws/api/configuration/ClientConfigFeature.java 2013-01-25
18:21:16 UTC (rev 17260)
+++
api/trunk/src/main/java/org/jboss/ws/api/configuration/ClientConfigFeature.java 2013-01-25
20:46:10 UTC (rev 17261)
@@ -44,10 +44,30 @@
this.configurer = ClientConfigUtil.resolveClientConfigurer();
}
+ /**
+ * Creates a feature for initializing the JAXWS client using
+ * the specified predefined configuration.
+ *
+ * @param configFile The config file to read the config from;
+ * null if the config is meant to be read
+ * from the AS model.
+ * @param configName The config name to read.
+ */
public ClientConfigFeature(String configFile, String configName) {
this(configFile, configName, false);
}
+ /**
+ * Creates a feature for initializing the JAXWS client using
+ * the specified predefined configuration.
+ *
+ * @param configFile The config file to read the config from;
+ * null if the config is meant to be read
+ * from the AS model.
+ * @param configName The config name to read.
+ * @param configureProperties Whether or not to set properties
+ * from the specified config (default false)
+ */
public ClientConfigFeature(String configFile, String configName, boolean
configureProperties) {
this();
this.configFile = configFile;
Show replies by date