Package org.jitsi.dnssec
Enum Class SecurityStatus
- All Implemented Interfaces:
Serializable
,Comparable<SecurityStatus>
,Constable
Codes for DNSSEC security statuses.
- Author:
- davidb
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionBOGUS means that the object (RRset or message) failed to validate (according to local policy), but should have validated.INDTERMINATE means that the object is insecure, but not authoritatively so.INSECURE means that the object is authoritatively known to be insecure.SECURE means that the object (RRset or message) validated according to local policy.UNCHECKED means that object has yet to be validated. -
Method Summary
Modifier and TypeMethodDescriptionstatic SecurityStatus
Returns the enum constant of this class with the specified name.static SecurityStatus[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNCHECKED
UNCHECKED means that object has yet to be validated. -
BOGUS
BOGUS means that the object (RRset or message) failed to validate (according to local policy), but should have validated. -
INDETERMINATE
INDTERMINATE means that the object is insecure, but not authoritatively so. Generally this means that the RRset is not below a configured trust anchor. -
INSECURE
INSECURE means that the object is authoritatively known to be insecure. Generally this means that this RRset is below a trust anchor, but also below a verified, insecure delegation. -
SECURE
SECURE means that the object (RRset or message) validated according to local policy.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-