Annotation Type MappedService


  • @Documented
    @Retention(RUNTIME)
    @Target(ANNOTATION_TYPE)
    @Analyze("org.tentackle.buildsupport.MappedServiceAnalyzeHandler")
    public @interface MappedService
    Annotation to mark an annotation to be processed by the ServiceAnalyzeHandler.
    • Required Element Summary

      Required Elements 
      Modifier and Type Required Element Description
      java.lang.Class<?> value
      The classname of the service class.
    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      java.lang.String method
      The method name of the mapped service that provides the value.
      The default is "value".
    • Element Detail

      • value

        java.lang.Class<?> value
        The classname of the service class.
        Returns:
        the service class
      • method

        java.lang.String method
        The method name of the mapped service that provides the value.
        The default is "value".
        Returns:
        the method name
        Default:
        "value"