License

Inheritance: java.lang.Object

public final class License

Provides methods to license the component.

Lean more

The following example demonstrates demonstrates how to setup license from the local file.

// Initialize License class. License license = new License();

// Set path to .lic file. license.setLicense(“C:\GroupDocs.Watermark.lic”);

Constructors

Constructor Description
License() Initializes a new instance of the [License](../../com.groupdocs.watermark.licensing/license) class.

Methods

Method Description
setLicense(String filePath) Licenses the component.
setLicense(InputStream stream) Licenses the component.

License()

public License()

Initializes a new instance of the [License](../../com.groupdocs.watermark.licensing/license) class.

setLicense(String filePath)

public final void setLicense(String filePath)

Licenses the component.

Use this method to load a license from a file.

Parameters:

Parameter Type Description
filePath java.lang.String Absolute path to license file.

setLicense(InputStream stream)

public final void setLicense(InputStream stream)

Licenses the component.

Use this method to load a license from a stream.

Parameters:

Parameter Type Description
stream java.io.InputStream License stream.