Class Product

    • Constructor Summary

      Constructors 
      Constructor Description
      Product​(java.lang.String name, java.lang.String uniqueID, java.lang.String location, java.lang.String version, Vendor vendor, java.lang.String copyright, java.lang.String infoURL, java.lang.String supportURL, java.util.Calendar lastModified, Feature[] features)
      Creates a new Product with the specified arguments.
    • Constructor Detail

      • Product

        public Product​(java.lang.String name,
                       java.lang.String uniqueID,
                       java.lang.String location,
                       java.lang.String version,
                       Vendor vendor,
                       java.lang.String copyright,
                       java.lang.String infoURL,
                       java.lang.String supportURL,
                       java.util.Calendar lastModified,
                       Feature[] features)
        Creates a new Product with the specified arguments.
        Parameters:
        name - The name of the Product.
        uniqueID - The uniqueID of the Product. For example: f2e0e6a6-1eec-11b2-adcb-d5eb84d8b90a.
        location - The location where the Product is installed in.
        version - The version of the Product. For example: 1.5.12.2427
        vendor - The Vendor of the Product.
        copyright - The copyright of the Product.
        infoURL - The URL of the Product.
        supportURL - The Support URL of the Product.
        lastModified - The last Modification Date of the Product.
        features - The Features of the Product.
        See Also:
        Vendor, Feature
    • Method Detail

      • getCopyright

        public java.lang.String getCopyright()
        The copyright of the Product.
      • getLastModified

        public java.util.Calendar getLastModified()
        The last Modification Date of the Product.
      • getFeatures

        public Feature[] getFeatures()
        The Features of the Product.
        See Also:
        Feature
      • getInfoURL

        public java.lang.String getInfoURL()
        The URL of the Product.
      • getSupportURL

        public java.lang.String getSupportURL()
        The Support URL of the Product.
      • getVendor

        public Vendor getVendor()
        The Vendor of the Product.
        See Also:
        Vendor