Enum RailflowLicenseInfoProvider
java.lang.Object
java.lang.Enum<RailflowLicenseInfoProvider>
io.jenkins.plugins.railflow.jenkins.util.RailflowLicenseInfoProvider
- All Implemented Interfaces:
LicenseInfoProvider,Serializable,Comparable<RailflowLicenseInfoProvider>
public enum RailflowLicenseInfoProvider
extends Enum<RailflowLicenseInfoProvider>
implements LicenseInfoProvider
Default implementation for
LicenseInfoProvider.- Author:
- Sergey Oplavin
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptiongetLicenseInfo(String licenseKeyOrContent, ProxyConfiguration proxy) Provides license information.static RailflowLicenseInfoProviderReturns the enum constant of this type with the specified name.static RailflowLicenseInfoProvider[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
THE_INSTANCE
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getLicenseInfo
public Optional<LicenseInfo> getLicenseInfo(String licenseKeyOrContent, ProxyConfiguration proxy) throws Exception Description copied from interface:LicenseInfoProviderProvides license information.- Specified by:
getLicenseInfoin interfaceLicenseInfoProvider- Parameters:
licenseKeyOrContent- license key or offline license content.proxy- proxy settings which are needed to connect to remote license server in case if license key is provided. If no proxy settings are required, passnull.- Returns:
- license info object or empty optional.
- Throws:
Exception- if something went wrong.
-