303N/A/*
303N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
303N/A *
303N/A * Copyright (c) 2009-2010 Oracle and/or its affiliates. All rights reserved.
303N/A *
303N/A * The contents of this file are subject to the terms of either the GNU
303N/A * General Public License Version 2 only ("GPL") or the Common Development
303N/A * and Distribution License("CDDL") (collectively, the "License"). You
303N/A * may not use this file except in compliance with the License. You can
303N/A * obtain a copy of the License at
303N/A * https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
303N/A * or packager/legal/LICENSE.txt. See the License for the specific
303N/A * language governing permissions and limitations under the License.
303N/A *
303N/A * When distributing the software, include this License Header Notice in each
303N/A * file and include the License file at packager/legal/LICENSE.txt.
303N/A *
303N/A * GPL Classpath Exception:
303N/A * Oracle designates this particular file as subject to the "Classpath"
303N/A * exception as provided by Oracle in the GPL Version 2 section of the License
5680N/A * file that accompanied this code.
303N/A *
5680N/A * Modifications:
5680N/A * If applicable, add the following below the License Header, with the fields
5680N/A * enclosed by brackets [] replaced by your own identifying information:
303N/A * "Portions Copyright [year] [name of copyright owner]"
303N/A *
5680N/A * Contributor(s):
303N/A * If you wish your version of this file to be governed by only the CDDL or
303N/A * only the GPL Version 2, indicate your decision by adding "[Contributor]
6236N/A * elects to include this software in this distribution under the [CDDL or GPL
303N/A * Version 2] license." If you don't indicate a single choice of license, a
6236N/A * recipient has the option to distribute your version of this file under
844N/A * either the CDDL, the GPL Version 2 or to extend the choice of license to
6236N/A * its licensees as provided above. However, if you add GPL Version 2 code
303N/A * and therefore, elected the GPL Version 2 license, then the option applies
1258N/A * only if the new code is made subject to such option by the copyright
303N/A * holder.
6236N/A */
2899N/A
6371N/Apackage endpoint.ejb;
6371N/A
6371N/Aimport javax.jws.WebService;
6371N/A
6371N/A@WebService(
6371N/AtargetNamespace="http://endpoint/ejb")
6371N/Apublic interface Hello {
5680N/A
5680N/A public String sayHello(String who);
5680N/A}
303N/A