Sophie

Sophie

distrib > Mageia > 5 > x86_64 > media > core-release-src > by-pkgid > d63782bc62da3630218a564e65b114da > files > 2

grizzly-2.3.6-6.mga5.src.rpm

--- extras/http-server-jaxws/src/main/java/org/glassfish/grizzly/jaxws/JaxwsConnection.java	2013-06-03 20:21:15.000000000 +0200
+++ extras/http-server-jaxws/src/main/java/org/glassfish/grizzly/jaxws/JaxwsConnection.java-gil	2013-07-10 10:53:18.582192549 +0200
@@ -40,6 +40,7 @@
 package org.glassfish.grizzly.jaxws;
 
 import com.sun.istack.NotNull;
+import com.sun.istack.Nullable;
 import com.sun.xml.ws.api.message.Packet;
 import com.sun.xml.ws.api.server.PortAddressResolver;
 import com.sun.xml.ws.api.server.WSEndpoint;
@@ -283,4 +284,40 @@
         
         return headers;
     }
+    
+    public int getServerPort() {
+        throw new UnsupportedOperationException("Not supported yet.");
+    }
+    
+    public @NotNull String getServerName() {
+        throw new UnsupportedOperationException("Not supported yet.");
+    }
+    
+    public @NotNull String getRequestScheme() {
+        throw new UnsupportedOperationException("Not supported yet.");
+    }
+    
+    public @NotNull String getRequestURI() {
+        throw new UnsupportedOperationException("Not supported yet.");
+    }
+    
+    public @Nullable List<String> getRequestHeaderValues(@NotNull String headerName){
+        throw new UnsupportedOperationException("Not supported yet.");
+    }
+    
+    public @NotNull Set<String> getRequestHeaderNames() {
+        throw new UnsupportedOperationException("Not supported yet.");
+    }
+    
+    public void setResponseHeaders(String key, List<String> value) {
+        throw new UnsupportedOperationException("Not supported yet.");
+    }
+    
+    public void setResponseHeaders(String key, String value) {
+        throw new UnsupportedOperationException("Not supported yet.");
+    }
+    
+    public void setResponseHeader(String key, List<String> value) {
+        throw new UnsupportedOperationException("Not supported yet.");
+    }
 }