diff options
2 files changed, 1 insertions, 33 deletions
diff --git a/sca-java-2.x/trunk/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeEndpoint.java b/sca-java-2.x/trunk/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeEndpoint.java index 928880214d..f4411d749f 100644 --- a/sca-java-2.x/trunk/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeEndpoint.java +++ b/sca-java-2.x/trunk/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeEndpoint.java @@ -72,20 +72,4 @@ public interface RuntimeEndpoint extends Endpoint, Invocable, Serializable { */ CompositeContext getCompositeContext(); - /** - * to allow for remote interface comparison we convert a Endpoint's Java interface - * to WSDL at build time. - * - * @param wsdlContract - */ -// void setGeneratedWSDLContract(InterfaceContract wsdlContract); - - /** - * to allow for remote interface comparison we convert a Endpoint's Java interface - * to WSDL at build time. - * - * @preturn wsdlContract - */ -// InterfaceContract getGeneratedWSDLContract(); - } diff --git a/sca-java-2.x/trunk/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeEndpointReference.java b/sca-java-2.x/trunk/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeEndpointReference.java index fb9b9992c6..197a46bf24 100644 --- a/sca-java-2.x/trunk/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeEndpointReference.java +++ b/sca-java-2.x/trunk/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeEndpointReference.java @@ -64,23 +64,7 @@ public interface RuntimeEndpointReference extends EndpointReference, Invocable, * There is checking in the activator but of course endpoint references may not have a binding assigned * until final resolution. */ - public void validateReferenceInterfaceCompatibility(); - - /** - * to allow for remote interface comparison we convert a Endpoint Reference's Java interface - * to WSDL at build time. - * - * @param wsdlContract - */ -// void setGeneratedWSDLContract(InterfaceContract wsdlContract); - - /** - * to allow for remote interface comparison we convert a Endpoint Reference's Java interface - * to WSDL at build time. - * - * @preturn wsdlContract - */ -// InterfaceContract getGeneratedWSDLContract(); + public void validateReferenceInterfaceCompatibility(); boolean isOutOfDate(); void rebuild(); |