which Stateless bean instance assigned to EJB object to serve the client, when two Stateless beans implements single remote interface and with same name
Ex:
@Stateless(name="KING")
public class One implements RemoteInterface{
}
@Stateless(name="KING")
public class Two implements RemoteInterface{
}