Enum CirrusModule
- java.lang.Object
- 
- java.lang.Enum<CirrusModule>
- 
- com.inductiveautomation.ignition.gateway.licensing.CirrusModule
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<CirrusModule>
 
 public enum CirrusModule extends java.lang.Enum<CirrusModule> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description AWS_ENGINEAWS_INJECTORAZURE_INJECTORGCP_INJECTORIBM_CLOUD_INJECTORMQTT_DISTRIBUTORMQTT_ENGINE
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancirrusModulesAreInstalled(ModuleManager manager)booleanmodulesAreActivated(ModuleManager manager)booleanmodulesAreLicensed(LicenseManager manager)booleanrequiresModules()static CirrusModulevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CirrusModule[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
MQTT_ENGINEpublic static final CirrusModule MQTT_ENGINE 
 - 
MQTT_DISTRIBUTORpublic static final CirrusModule MQTT_DISTRIBUTOR 
 - 
AWS_ENGINEpublic static final CirrusModule AWS_ENGINE 
 - 
AWS_INJECTORpublic static final CirrusModule AWS_INJECTOR 
 - 
AZURE_INJECTORpublic static final CirrusModule AZURE_INJECTOR 
 - 
IBM_CLOUD_INJECTORpublic static final CirrusModule IBM_CLOUD_INJECTOR 
 - 
GCP_INJECTORpublic static final CirrusModule GCP_INJECTOR 
 
- 
 - 
Method Detail- 
valuespublic static CirrusModule[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CirrusModule c : CirrusModule.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static CirrusModule valueOf(java.lang.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:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 - 
cirrusModulesAreInstalledpublic boolean cirrusModulesAreInstalled(@Nonnull ModuleManager manager)- Returns:
- true is all module dependencies exist
 
 - 
modulesAreActivatedpublic boolean modulesAreActivated(ModuleManager manager) - Returns:
- true if the module dependencies exist and none of the trials are expired. If no module dependencies exist and the platform is trial expired, returns false
 
 - 
requiresModulespublic boolean requiresModules() 
 - 
modulesAreLicensedpublic boolean modulesAreLicensed(LicenseManager manager) - Returns:
- true if the license exists for all module dependencies
 
 
- 
 
-