vote up 2 vote down star

I saw in the apache camel source code that

public class DefaultCamelContext extends ServiceSupport implements CamelContext, Service

My question is why this definition since

public interface CamelContext extends Service

and also

public abstract class ServiceSupport implements Service

Shouldn't it be just

public class DefaultCamelContext extends ServiceSupport implements CamelContext

?

Is the explicit 'implements Service' needed and I am missing something? Generally is there any case where this might be needed?

flag

77% accept rate

closed as exact duplicate by sylvarking Dec 17 '08 at 20:10

2 Answers

vote up 1 vote down

See this question, which is asking the same thing:

Should an interface that is inherited from base-class be implemented explicitly in subclass?

link|flag
vote up 2 vote down

It's not needed, but it emphasizes to anyone reading the code that it really does implement Service - it means they don't need to look at ServiceSupport to find that out.

I don't tend to do it myself, but there's nothing wrong with doing it.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.