Importing a Service in a User Interface Plug-In Module

To use a Java service you created and exposed in the service layer, a user interface plug-in module must import the service. You import the service by updating two metadata configuration files within your user interface plug-in module Web Archive (WAR) bundle.
In your user interface plug-in module WAR bundle, locate the
/war/src/main/webapp/META-INF/MANIFEST.MF
file and add the following lines.
Import-Package: com.vmware.myService
com.vmware.myService
is the name of the service package you created.