just a quick question: I want to factor out the basic CRUD methods in a
BasicSDOServiceInterface. A real service will extend this interface and
add some more methods, e. g. as in 
    RealServiceInterface extends BasicSDOServiceInterface.

Now, some real services might be remotable, others should not be.
Therefore I do not want to add a @Remotable annotation to 
BasicSDOServiceInterface.

If I annotate only the RealServiceInterface with @Remotable, I assume
that this annotation will apply to all the interface methods available in 
RealServiceInterface, including the inherited ones from 
BasicSDOServiceInterface. Is that assumption correct?

-- Sebastian


Reply via email to