You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by di...@apache.org on 2007/01/26 22:57:05 UTC

svn commit: r500373 - /geronimo/server/trunk/testsuite/webservices-testsuite/jaxws-tests/jaxws-war/src/main/java/org/apache/hello_world_soap_http/GreeterHandler.java

Author: dims
Date: Fri Jan 26 13:57:04 2007
New Revision: 500373

URL: http://svn.apache.org/viewvc?view=rev&rev=500373
Log:
remove duplicate code

Modified:
    geronimo/server/trunk/testsuite/webservices-testsuite/jaxws-tests/jaxws-war/src/main/java/org/apache/hello_world_soap_http/GreeterHandler.java

Modified: geronimo/server/trunk/testsuite/webservices-testsuite/jaxws-tests/jaxws-war/src/main/java/org/apache/hello_world_soap_http/GreeterHandler.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/testsuite/webservices-testsuite/jaxws-tests/jaxws-war/src/main/java/org/apache/hello_world_soap_http/GreeterHandler.java?view=diff&rev=500373&r1=500372&r2=500373
==============================================================================
--- geronimo/server/trunk/testsuite/webservices-testsuite/jaxws-tests/jaxws-war/src/main/java/org/apache/hello_world_soap_http/GreeterHandler.java (original)
+++ geronimo/server/trunk/testsuite/webservices-testsuite/jaxws-tests/jaxws-war/src/main/java/org/apache/hello_world_soap_http/GreeterHandler.java Fri Jan 26 13:57:04 2007
@@ -62,131 +62,3 @@
     }
     
 }
-/**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.hello_world_soap_http;
-
-import java.util.Set;
-import javax.xml.namespace.QName;
-import javax.xml.ws.handler.soap.SOAPHandler;
-import javax.xml.ws.handler.soap.SOAPMessageContext;
-import javax.xml.ws.handler.MessageContext;
-
-import javax.annotation.Resource;
-import javax.annotation.PreDestroy;
-import javax.annotation.PostConstruct;
-
-public class GreeterHandler implements SOAPHandler<SOAPMessageContext> {
-    
-    @Resource(name="greeting")
-    private String greeting;
-
-    @PostConstruct
-    public void init() {
-        System.out.println(this + " PostConstruct");
-    }
-
-    @PreDestroy
-    public void destroy() {
-        System.out.println(this + " PreDestroy");
-    }
-
-    public boolean handleMessage(SOAPMessageContext smc) {
-        System.out.println(this + " handleMessage(): " + greeting);
-        return true;
-    }
-       
-    public boolean handleFault(SOAPMessageContext smc) {
-        System.out.println(this + " handleFault()");
-        return true;
-    }
-    
-    public void close(MessageContext messageContext) {
-        System.out.println(this + " close()");
-    }
-    
-    public Set<QName> getHeaders(){
-        return null;
-    }
-    
-}
-/**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.hello_world_soap_http;
-
-import java.util.Set;
-import javax.xml.namespace.QName;
-import javax.xml.ws.handler.soap.SOAPHandler;
-import javax.xml.ws.handler.soap.SOAPMessageContext;
-import javax.xml.ws.handler.MessageContext;
-
-import javax.annotation.Resource;
-import javax.annotation.PreDestroy;
-import javax.annotation.PostConstruct;
-
-public class GreeterHandler implements SOAPHandler<SOAPMessageContext> {
-    
-    @Resource(name="greeting")
-    private String greeting;
-
-    @PostConstruct
-    public void init() {
-        System.out.println(this + " PostConstruct");
-    }
-
-    @PreDestroy
-    public void destroy() {
-        System.out.println(this + " PreDestroy");
-    }
-
-    public boolean handleMessage(SOAPMessageContext smc) {
-        System.out.println(this + " handleMessage(): " + greeting);
-        return true;
-    }
-       
-    public boolean handleFault(SOAPMessageContext smc) {
-        System.out.println(this + " handleFault()");
-        return true;
-    }
-    
-    public void close(MessageContext messageContext) {
-        System.out.println(this + " close()");
-    }
-    
-    public Set<QName> getHeaders(){
-        return null;
-    }
-    
-}