Package com.adobe.granite.license
Interface ProductInfo
-
@ProviderType public interface ProductInfoEncapsulates information of a product or project.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetName()Returns the product nameValueMapgetProperties()Returns all properties of this info.java.lang.StringgetShortName()Returns the short product name, e.g.java.lang.StringgetShortVersion()Returns the short, textual version.java.lang.StringgetUrl()Returns the product url.java.lang.StringgetVendor()Returns the vendor.java.lang.StringgetVendorUrl()Returns the vendor url.org.osgi.framework.VersiongetVersion()Returns the product version.java.lang.StringgetYear()Returns the product year.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Returns the product name- Returns:
- the product name.
-
getVersion
org.osgi.framework.Version getVersion()
Returns the product version. e.g. "5.3.0.20091225"- Returns:
- the product version.
-
getShortName
java.lang.String getShortName()
Returns the short product name, e.g. "CQ"- Returns:
- the short product name
-
getShortVersion
java.lang.String getShortVersion()
Returns the short, textual version. e.g. "5.3"- Returns:
- the short product version.
-
getYear
java.lang.String getYear()
Returns the product year. e.g. "2009"- Returns:
- the product version.
-
getVendor
java.lang.String getVendor()
Returns the vendor. e.g. "Day Management AG"- Returns:
- the vendor.
-
getVendorUrl
java.lang.String getVendorUrl()
Returns the vendor url. e.g. "http://www.day.com"- Returns:
- the vendor url.
-
getUrl
java.lang.String getUrl()
Returns the product url. e.g. "http://www.day.com/cq5"- Returns:
- the product url.
-
getProperties
ValueMap getProperties()
Returns all properties of this info.- Returns:
- all properties.
-
-