blob: 6321cdfa1af713323439165c7b852b40be29711f [file] [log] [blame]
/*
* Copyright (c) 2017, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
/*
* HelloEJB.java
*
* Created on July 27, 2007, 9:06 AM
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package entapp.ejb;
import jakarta.ejb.Stateless;
import jakarta.jws.WebMethod;
import jakarta.jws.WebParam;
import jakarta.jws.WebService;
/**
*
* @author bhavani
*/
@Stateless()
@WebService()
public class HelloEJB {
/**
* Web service operation
*/
@WebMethod
public String sayHello(@WebParam(name = "name")
String name) {
String hello = "Hello from HelloEJB - " + name;
System.out.println(hello);
return hello;
}
}