License
Contents
[
Hide
]Inheritance: java.lang.Object
public class License
Provides methods to license the component.
Constructors
Constructor | Description |
---|---|
License() | Initializes a new instance of this class. |
Methods
Method | Description |
---|
| setLicense(File licenseFile) | Licenses the component. | | setLicense(InputStream stream) | Licenses the component. | | setLicense(String licenseFilePath) | Licenses the component. | | isValid() | Check license. |
License()
public License()
Initializes a new instance of this class.
setLicense(File licenseFile)
public static void setLicense(File licenseFile)
Licenses the component.
Parameters:
Parameter | Type | Description |
---|---|---|
licenseFile | java.io.File | representation of file pathname |
setLicense(InputStream stream)
public static void setLicense(InputStream stream)
Licenses the component.
Parameters:
Parameter | Type | Description |
---|---|---|
stream | java.io.InputStream | A stream that contains the license. |
setLicense(String licenseFilePath)
public static void setLicense(String licenseFilePath)
Licenses the component.
Parameters:
Parameter | Type | Description |
---|---|---|
licenseFilePath | java.lang.String | Can be a full or short file name Use an empty string to switch to evaluation mode. |
isValid()
public static boolean isValid()
Check license.
Returns: boolean - Boolean value license is valid.