Package play.mvc

Class Router.ActionDefinition

  • Enclosing class:
    Router

    public static class Router.ActionDefinition
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      java.lang.String action
      FIXME - what is this? does it include the class and package?
      java.util.Map<java.lang.String,​java.lang.Object> args
      FIXME - are these the required args in the routing file, or the query string in a request?
      java.lang.String host
      The domain/host name.
      java.lang.String method
      The HTTP method, e.g.
      boolean star
      Whether the route contains an astericks *.
      java.lang.String url
      FIXME - what is this? does it include the domain?
    • Field Detail

      • host

        public java.lang.String host
        The domain/host name.
      • method

        public java.lang.String method
        The HTTP method, e.g. "GET".
      • url

        public java.lang.String url
        FIXME - what is this? does it include the domain?
      • star

        public boolean star
        Whether the route contains an astericks *.
      • action

        public java.lang.String action
        FIXME - what is this? does it include the class and package?
      • args

        public java.util.Map<java.lang.String,​java.lang.Object> args
        FIXME - are these the required args in the routing file, or the query string in a request?
    • Constructor Detail

      • ActionDefinition

        public ActionDefinition()