@Retention(value=CLASS)
@Target(value=TYPE)
public @interface Remoter
A Remote interface is an interface that is implemented and then exposed by an android service using a Binder.
Normally this is done by defining this interface as an aidl file. Remoter allows you to do this the normal android way using normal interface and a class implementing that interface.