Author: aco
Date: Mon Feb 26 14:34:25 2007
New Revision: 512046
URL: http://svn.apache.org/viewvc?view=rev&rev=512046
Log:
- capitalized the URI in locationURI to be consistent with the other http
endpoint
Modified:
incubator/servicemix/trunk/deployables/bindingcomponents/servicemix-http/src/main/java/org/apache/servicemix/http/endpoints/HttpConsumerEndpoint.java
Modified:
incubator/servicemix/trunk/deployables/bindingcomponents/servicemix-http/src/main/java/org/apache/servicemix/http/endpoints/HttpConsumerEndpoint.java
URL:
http://svn.apache.org/viewvc/incubator/servicemix/trunk/deployables/bindingcomponents/servicemix-http/src/main/java/org/apache/servicemix/http/endpoints/HttpConsumerEndpoint.java?view=diff&rev=512046&r1=512045&r2=512046
==============================================================================
---
incubator/servicemix/trunk/deployables/bindingcomponents/servicemix-http/src/main/java/org/apache/servicemix/http/endpoints/HttpConsumerEndpoint.java
(original)
+++
incubator/servicemix/trunk/deployables/bindingcomponents/servicemix-http/src/main/java/org/apache/servicemix/http/endpoints/HttpConsumerEndpoint.java
Mon Feb 26 14:34:25 2007
@@ -63,7 +63,7 @@
private String authMethod;
private SslParameters ssl;
- private String locationUri;
+ private String locationURI;
private HttpConsumerMarshaler marshaler = new
DefaultHttpConsumerMarshaler();
private long timeout = 0; // 0 => default to the timeout configured on
component
private URI defaultMep = MessageExchangeSupport.IN_OUT;
@@ -89,14 +89,14 @@
* @return the locationUri
*/
public String getLocationURI() {
- return locationUri;
+ return locationURI;
}
/**
- * @param locationUri the locationUri to set
+ * @param locationURI the locationUri to set
*/
- public void setLocationURI(String locationUri) {
- this.locationUri = locationUri;
+ public void setLocationURI(String locationURI) {
+ this.locationURI = locationURI;
}
/**
@@ -172,7 +172,7 @@
public void start() throws Exception {
super.start();
loadStaticResources();
- httpContext = getServerManager().createContext(locationUri, this);
+ httpContext = getServerManager().createContext(locationURI, this);
}
public void stop() throws Exception {