Annotation Type UriMapping


  • @Documented
    @Retention(RUNTIME)
    @Target(ANNOTATION_TYPE)
    @Inherited
    public @interface UriMapping
    Meta annotation for the mapped URI whether at the controller or action level.
    Since:
    1.0.1
    • Field Summary

      Fields 
      Modifier and Type Fields Description
      static java.lang.String DEFAULT_URI  
    • Optional Element Summary

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

      • DEFAULT_URI

        static final java.lang.String DEFAULT_URI
    • Element Detail

      • value

        java.lang.String value
        Returns:
        The URI of the action
        Default:
        "/"
      • uris

        java.lang.String[] uris
        Only to be used in the context of a server.
        Returns:
        The URIs of the action
        Default:
        {"/"}