From 8d6c3f989bb2f359091468534730080425afa8c4 Mon Sep 17 00:00:00 2001 From: slaws Date: Wed, 24 Sep 2008 08:13:02 +0000 Subject: Change message getHeaders() operation to return a list, remove the QoS context and change various tests to take account of this assuming that the security information is now passed in the header. This pass the security context is not consolidated into a single subject. The tests that used to pass just a principal still do. Also add a delivery mode JMS policy test. Add some ignores. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@698457 13f79535-47bb-0310-9956-ffa450edef68 --- .../tuscany/sca/implementation/notification/ImmutableMessage.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'java/sca/modules/implementation-notification') diff --git a/java/sca/modules/implementation-notification/src/main/java/org/apache/tuscany/sca/implementation/notification/ImmutableMessage.java b/java/sca/modules/implementation-notification/src/main/java/org/apache/tuscany/sca/implementation/notification/ImmutableMessage.java index 8db7e5bed3..7a3c4bdf5a 100644 --- a/java/sca/modules/implementation-notification/src/main/java/org/apache/tuscany/sca/implementation/notification/ImmutableMessage.java +++ b/java/sca/modules/implementation-notification/src/main/java/org/apache/tuscany/sca/implementation/notification/ImmutableMessage.java @@ -18,6 +18,7 @@ */ package org.apache.tuscany.sca.implementation.notification; +import java.util.List; import java.util.Map; import org.apache.tuscany.sca.interfacedef.Operation; @@ -89,11 +90,8 @@ public class ImmutableMessage implements Message { return null; } - public Map getQoSContext() { - return null; - } - public Map getHeaders() { + public List getHeaders() { return null; } -- cgit v1.2.3