This commit is contained in:
Arjen Poutsma
2008-07-17 13:07:38 +00:00
parent a846e9c46a
commit 3b05e223e6
2 changed files with 4 additions and 4 deletions

View File

@@ -51,12 +51,12 @@ public abstract class AbstractCachingDestinationProvider implements DestinationP
public final URI getDestination() {
if (cache) {
if (cachedUri == null) {
cachedUri = lookupUri();
cachedUri = lookupDestination();
}
return cachedUri;
}
else {
return lookupUri();
return lookupDestination();
}
}
@@ -67,5 +67,5 @@ public abstract class AbstractCachingDestinationProvider implements DestinationP
*
* @return the destination URI
*/
protected abstract URI lookupUri();
protected abstract URI lookupDestination();
}

View File

@@ -92,7 +92,7 @@ public class Wsdl11DestinationProvider extends AbstractCachingDestinationProvide
.createXPathExpression(expression, expressionNamespaces);
}
protected URI lookupUri() {
protected URI lookupDestination() {
try {
DOMResult result = new DOMResult();
Transformer transformer = transformerFactory.newTransformer();