- Open the deployment descriptor file ejb-jar.xml for editing.
- In the <entity> section, create tag <local>, or <remote> and type the name of the desired interface. Note that you can specify the target package in this tag, for example, samples.ejb.ManuallyCreatedEntityLocalInterface, using code completion after each dot.
- If the declared class does not yet exist, IntelliJ IDEA suggests a quick fix. Choose from the suggestion list. If the target package was not defined in the <ejb-class> tag, select the desired package in the Choose Destination Directory dialog box. The stub class is created in the specified location.
- Open the New Bean dialog box.
- If you need to configure remote client view of a bean, select the Remote Interface
check box.
- In the Home field specify the name for the bean remote home interface.
- In the Remote field specify the name for the bean remote interface.
- If you need to configure local client view of a bean, select the Local Interface
check box.
- In the Home field specify the name for the bean local home interface.
- In the Remote field specify the name for the bean local interface.

