Class WebData


  • public class WebData
    extends Object
    WebData
    • Constructor Detail

      • WebData

        public WebData()
    • Method Detail

      • webAddress

        public WebData webAddress​(String webAddress)
        The URL of the website or the app store URL.
        Parameters:
        webAddress -
        Returns:
        the current WebData instance, allowing for method chaining
      • getWebAddress

        public String getWebAddress()
        The URL of the website or the app store URL.
        Returns:
        webAddress
      • setWebAddress

        public void setWebAddress​(String webAddress)
        The URL of the website or the app store URL.
        Parameters:
        webAddress -
      • webAddressId

        public WebData webAddressId​(String webAddressId)
        The unique identifier of the web address.
        Parameters:
        webAddressId -
        Returns:
        the current WebData instance, allowing for method chaining
      • getWebAddressId

        public String getWebAddressId()
        The unique identifier of the web address.
        Returns:
        webAddressId
      • setWebAddressId

        public void setWebAddressId​(String webAddressId)
        The unique identifier of the web address.
        Parameters:
        webAddressId -
      • equals

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

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

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

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