Annotation Type Navigable


  • @Retention(RUNTIME)
    @Documented
    @Target(METHOD)
    public @interface Navigable
    Methods annotated as Navigable appear as link in the enclosing class'es _links object.
         
    
             @Navigable
             Exported(name="pipelines")
             public BluePipelineContainer getPipelines();
    
             Results in to:
    
             "_links":{
                 "pipelines":{"href":"/pipelines"}
             }
         
     
    Author:
    Vivek Pandey