Interface WindowsRegistryValueObj

All Superinterfaces:
GenericValidation, SdoDefaultValidator, Serializable, StixCustomProperties
All Known Implementing Classes:
WindowsRegistryValue

@Immutable public interface WindowsRegistryValueObj extends GenericValidation, StixCustomProperties, Serializable
The Windows Registry Value type captures the properties of a Windows Registry Key Value.
  • Method Details

    • getName

      @JsonPropertyDescription("Specifies the name of the registry value. For specifying the default value in a registry key, an empty string MUST be used.") @NotNull @NotNull String getName()
    • getData

      @JsonPropertyDescription("Specifies the data contained in the registry value.") Optional<String> getData()
    • getDataType

      @JsonPropertyDescription("Specifies the registry (REG_*) data type used in the registry value.") Optional<@Vocab(WindowsRegistryValueDataTypes.class) String> getDataType()