src/share/jaxws_classes/com/sun/xml/internal/ws/api/message/FilterMessageImpl.java

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.  Oracle designates this

@@ -71,11 +71,11 @@
 
     public boolean hasHeaders() {
         return delegate.hasHeaders();
     }
 
-    public @NotNull HeaderList getHeaders() {
+    public @NotNull MessageHeaders getHeaders() {
         return delegate.getHeaders();
     }
 
     public @NotNull AttachmentSet getAttachments() {
         return delegate.getAttachments();

@@ -166,6 +166,10 @@
     }
 
     public @NotNull String getID(AddressingVersion av, SOAPVersion sv) {
         return delegate.getID(av, sv);
     }
+
+    public SOAPVersion getSOAPVersion() {
+        return delegate.getSOAPVersion();
+    }
 }