All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.evasion.plugin.junit.Hello Maven / Gradle / Ivy

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.evasion.plugin.junit;

import javax.ejb.Local;
import javax.ejb.Remote;
import javax.ejb.Stateless;

/**
 *
 * @author glon-56610
 */
@Stateless
public class Hello implements HelloLocal, HelloRemote{

    public String hello() {
        return "hello";
    }

    @Override
    public String helloRemote() {
        return "Hello remote";
    }

    
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy