summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoredwardsmj <edwardsmj@13f79535-47bb-0310-9956-ffa450edef68>2009-05-16 14:30:30 +0000
committeredwardsmj <edwardsmj@13f79535-47bb-0310-9956-ffa450edef68>2009-05-16 14:30:30 +0000
commit20fa7f4fc3215288eaae0ef2887e9225967103bc (patch)
tree756074cab632810b6eb93b7bfc0b6faccb9d2a1e
parent023918e2659fd6e636632d52f5ee4bd76e89fa65 (diff)
Fix for TUSCANY-3036: for component service interface mismatch with implementation service interface, raise an error rather than a warning
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@775472 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--java/sca/modules/assembly/src/main/resources/assembly-validation-messages.properties4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/sca/modules/assembly/src/main/resources/assembly-validation-messages.properties b/java/sca/modules/assembly/src/main/resources/assembly-validation-messages.properties
index 3a74ac1497..77d8c6ee4c 100644
--- a/java/sca/modules/assembly/src/main/resources/assembly-validation-messages.properties
+++ b/java/sca/modules/assembly/src/main/resources/assembly-validation-messages.properties
@@ -35,8 +35,8 @@ PropertyOverrideManyAttribute = Component property many attribute incompatible w
ReferenceNotFound = Reference not found for component reference: Component = {0} Reference = {1}
ReferenceIncompatibleMultiplicity = Component reference multiplicity incompatible with reference multiplicity: Component = {0} Reference = {1}
ReferenceIncompatibleInterface = Incompatible interfaces on component reference and target: Composite = {0} Reference = {1} Service = {2}
-ReferenceIncompatibleComponentInterface = Component reference interface incompatible with reference interface: Component = {0} Reference = {1}
-ServiceIncompatibleComponentInterface = Component service interface incompatible with service interface: Component = {0} Service = {1}
+ReferenceIncompatibleComponentInterface = Component reference interface incompatible with implementation reference interface: Component = {0} Reference = {1}
+ServiceIncompatibleComponentInterface = Component service interface incompatible with implementation service interface: Component = {0} Service = {1}
MultipleBindingsForService = Multiple bindings with the same name for a service: Service = {0} Binding name = {1}
MultipleBindingsForReference = Multiple bindings with the same name for a reference: Reference = {0} Binding name = {1}
ReferenceWithoutTargets = No targets for reference: Composite = {0} Reference = {1}