Hello,
 
I have a service interface for public usage like
 
public interface MyService
{
    public void doSomething();
}
 
and one for internal usage (inside my framework)
 
public interface InternalMyService extends Service
{
    public void soSomethingInternal();
}
 
How should I define service point(s) in hivemodule.xml to allow:
- my framework classes to access the service as InternalMyService
- to force outside access as MyService
 
Thanks for your help!
BR,
Norbi

Reply via email to