Annotation Type Trace


  • @Documented
    @Retention(RUNTIME)
    @Target(METHOD)
    @HttpMethodMapping
    @Inherited
    public @interface Trace
    Annotation that can be applied to method to signify the method receives a HttpMethod.TRACE.
    Since:
    1.0
    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      java.lang.String uri  
      java.lang.String[] uris
      Only to be used in the context of a server.
      java.lang.String value  
    • Element Detail

      • value

        @AliasFor(annotation=HttpMethodMapping.class,member="value") @AliasFor(annotation=UriMapping.class,member="value")
        java.lang.String value
        Returns:
        The URI of the TRACE route
        Default:
        "/"
      • uris

        @AliasFor(annotation=HttpMethodMapping.class,member="uris") @AliasFor(annotation=UriMapping.class,member="uris")
        java.lang.String[] uris
        Only to be used in the context of a server.
        Returns:
        The URIs of the TRACE route
        Default:
        {"/"}