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 Details

  • Method Details

    • values

      public static RailflowLicenseInfoProvider[] 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

      public static RailflowLicenseInfoProvider valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • getLicenseInfo

      public Optional<LicenseInfo> getLicenseInfo(String licenseKeyOrContent, ProxyConfiguration proxy) throws Exception
      Description copied from interface: LicenseInfoProvider
      Provides license information.
      Specified by:
      getLicenseInfo in interface LicenseInfoProvider
      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, pass null.
      Returns:
      license info object or empty optional.
      Throws:
      Exception - if something went wrong.