Class Route


  • public class Route
    extends Object
    Route
    • Constructor Detail

      • Route

        public Route()
    • Method Detail

      • link

        public Route link​(String link)
        The redirection link. You can use this link to redirect the user to the open banking flow when the user selects it.
        Parameters:
        link - The redirection link. You can use this link to redirect the user to the open banking flow when the user selects it.
        Returns:
        the current Route instance, allowing for method chaining
      • getLink

        public String getLink()
        The redirection link. You can use this link to redirect the user to the open banking flow when the user selects it.
        Returns:
        link The redirection link. You can use this link to redirect the user to the open banking flow when the user selects it.
      • setLink

        public void setLink​(String link)
        The redirection link. You can use this link to redirect the user to the open banking flow when the user selects it.
        Parameters:
        link - The redirection link. You can use this link to redirect the user to the open banking flow when the user selects it.
      • provider

        public Route provider​(Provider provider)
        provider
        Parameters:
        provider -
        Returns:
        the current Route instance, allowing for method chaining
      • getProvider

        public Provider getProvider()
        Get provider
        Returns:
        provider
      • setProvider

        public void setProvider​(Provider provider)
        provider
        Parameters:
        provider -
      • equals

        public boolean equals​(Object o)
        Return true if this Route object is equal to o.
        Overrides:
        equals in class Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • fromJson

        public static Route fromJson​(String jsonString)
                              throws com.fasterxml.jackson.core.JsonProcessingException
        Create an instance of Route given an JSON string
        Parameters:
        jsonString - JSON string
        Returns:
        An instance of Route
        Throws:
        com.fasterxml.jackson.core.JsonProcessingException - if the JSON string is invalid with respect to Route
      • toJson

        public String toJson()
                      throws com.fasterxml.jackson.core.JsonProcessingException
        Convert an instance of Route to an JSON string
        Returns:
        JSON string
        Throws:
        com.fasterxml.jackson.core.JsonProcessingException