@Remote is used when writing remote interface. Review the example below:
Code:import javax.ejb.Remote;
@Remote
public interface HelloWorld{
public void greeting(String pName);
}
Printable View
@Remote is used when writing remote interface. Review the example below:
Code:import javax.ejb.Remote;
@Remote
public interface HelloWorld{
public void greeting(String pName);
}