Author: rsearls
Date: 2014-06-02 11:43:33 -0400 (Mon, 02 Jun 2014)
New Revision: 18707
Modified:
common/branches/rsearls/src/main/java/org/jboss/ws/common/management/AbstractServerConfig.java
common/branches/rsearls/src/main/java/org/jboss/ws/common/management/AbstractServerConfigMBean.java
Log:
webservicePath attr revised webServicePathRewriteRule
Modified:
common/branches/rsearls/src/main/java/org/jboss/ws/common/management/AbstractServerConfig.java
===================================================================
---
common/branches/rsearls/src/main/java/org/jboss/ws/common/management/AbstractServerConfig.java 2014-06-02
15:43:09 UTC (rev 18706)
+++
common/branches/rsearls/src/main/java/org/jboss/ws/common/management/AbstractServerConfig.java 2014-06-02
15:43:33 UTC (rev 18707)
@@ -83,8 +83,8 @@
private final Object modifySOAPAddressLock = new Object();
// The SOAP address path component for substitution in the existing SOAP address.
- private volatile String webServicePath;
- private final Object webServicePathLock = new Object();
+ private volatile String webServicePathRewriteRule;
+ private final Object webServicePathRewriteRuleLock = new Object();
//The stack config
protected volatile StackConfig stackConfig;
@@ -254,24 +254,24 @@
}
}
- public String getWebServicePath()
+ public String getWebServicePathRewriteRule()
{
- return webServicePath;
+ return webServicePathRewriteRule;
}
- public void setWebServicePath(String path)
+ public void setWebServicePathRewriteRule(String path)
{
- setWebServicePath(path, null);
+ setWebServicePathRewriteRule(path, null);
}
- public void setWebServicePath(String path, UpdateCallbackHandler uch)
+ public void setWebServicePathRewriteRule(String path, UpdateCallbackHandler uch)
{
- synchronized (webServicePathLock) {
+ synchronized (webServicePathRewriteRuleLock) {
if (uch != null)
{
uch.onBeforeUpdate();
}
- this.webServicePath = path;
+ this.webServicePathRewriteRule = path;
}
}
Modified:
common/branches/rsearls/src/main/java/org/jboss/ws/common/management/AbstractServerConfigMBean.java
===================================================================
---
common/branches/rsearls/src/main/java/org/jboss/ws/common/management/AbstractServerConfigMBean.java 2014-06-02
15:43:09 UTC (rev 18706)
+++
common/branches/rsearls/src/main/java/org/jboss/ws/common/management/AbstractServerConfigMBean.java 2014-06-02
15:43:33 UTC (rev 18707)
@@ -59,7 +59,7 @@
void setModifySOAPAddress(boolean flag);
- String getWebServicePath();
+ String getWebServicePathRewriteRule();
- void setWebServicePath(String path);
+ void setWebServicePathRewriteRule(String path);
}
Show replies by date