Package Torello.Browser.BrowserAPI
Class Network.SignedCertificateTimestamp
- java.lang.Object
-
- Torello.Browser.BaseType<Network.SignedCertificateTimestamp>
-
- Torello.Browser.BrowserAPI.Network.SignedCertificateTimestamp
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<BaseType<?>>
- Enclosing class:
- Network
public static class Network.SignedCertificateTimestamp extends BaseType<Network.SignedCertificateTimestamp> implements java.io.Serializable
This Nested Java Class is declared as a "Type", which is similar to a Java Class. The CDP API Specifications list this type among the types, events & commands located in theNetworkdomain, which may be found within theBrowserAPI.
📌 All browser domain type classes will have a class name that begins with an upper case letter.Details of a signed certificate timestamp (SCT).- See Also:
- Serialized Form
Hi-Lited Source-Code:This File's Source Code:
- View Here: Torello/Browser/BrowserAPI/Network.java
- Open New Browser-Tab: Torello/Browser/BrowserAPI/Network.java
File Size: 2,917 Bytes Line Count: 75 '\n' Characters Found
Helper: Equals, HashCode, toJSON, etc
- View Here: Network$$SignedCertificateTimestamp$$.java
- Open New Browser-Tab: Network$$SignedCertificateTimestamp$$.java
File Size: 11,740 Bytes Line Count: 267 '\n' Characters Found
-
-
Field Summary
Serializable ID Modifier and Type Field Description protected static longserialVersionUIDType Fields / Properties (from Google & Browser Specs) Modifier and Type Field Description StringhashAlgorithmHash algorithm.StringlogDescriptionLog name / description.StringlogIdLog ID.StringoriginOrigin.StringsignatureAlgorithmSignature algorithm.StringsignatureDataSignature data.StringstatusValidation status.NumbertimestampIssuance date.
-
Constructor Summary
Constructors Constructor Description SignedCertificateTimestamp(ReadOnlyList<Boolean> isPresent, String status, String origin, String logDescription, String logId, Number timestamp, String hashAlgorithm, String signatureAlgorithm, String signatureData)Constructor.
-
Method Summary
Static Builder Convert a JsonObject to a POJO Modifier and Type Method Description static Network.SignedCertificateTimestampfromJSON(JsonObject jo)Creates an instance of this class from aJsonObject.Retrieve the Type-Descriptor Singleton-Instance for this Nested Class. Modifier and Type Method Description static NestedDescriptor<Network.SignedCertificateTimestamp>descriptor()Returns this class'sNestedDescriptorsingleton-instance.-
Methods inherited from class Torello.Browser.BaseType
allEnumStrROLs, compareTo, enumStrList, enumStrValidate, enumStrValidateThrow, equals, hashCode, isPresent, optionalsValidate, optionalsValidateThrow, toJSON, toString
-
-
-
-
Field Detail
-
serialVersionUID
protected static final long serialVersionUID
This fulfils the SerialVersion UID requirement for all classes that implement Java'sinterface java.io.Serializable. Using theSerializableImplementation offered by java is very easy, and can make saving program state when debugging a lot easier. It can also be used in place of more complicated systems like "hibernate" to store data as well.- See Also:
- Constant Field Values
-
status
public final java.lang.String status
Validation status.
-
origin
public final java.lang.String origin
Origin.
-
logDescription
public final java.lang.String logDescription
Log name / description.
-
logId
public final java.lang.String logId
Log ID.
-
timestamp
public final java.lang.Number timestamp
Issuance date. Unlike TimeSinceEpoch, this contains the number of milliseconds since January 1, 1970, UTC, not the number of seconds.
-
hashAlgorithm
public final java.lang.String hashAlgorithm
Hash algorithm.
-
signatureAlgorithm
public final java.lang.String signatureAlgorithm
Signature algorithm.
-
signatureData
public final java.lang.String signatureData
Signature data.
-
-
Constructor Detail
-
SignedCertificateTimestamp
public SignedCertificateTimestamp (ReadOnlyList<java.lang.Boolean> isPresent, java.lang.String status, java.lang.String origin, java.lang.String logDescription, java.lang.String logId, java.lang.Number timestamp, java.lang.String hashAlgorithm, java.lang.String signatureAlgorithm, java.lang.String signatureData)
Constructor. Please review this class' fields for documentation.
-
-
Method Detail
-
fromJSON
public static Network.SignedCertificateTimestamp fromJSON(JsonObject jo)
Creates an instance of this class from aJsonObject.- Code:
- Exact Method Body:
return singleton.fromJSON(jo);
-
descriptor
public static NestedDescriptor<Network.SignedCertificateTimestamp> descriptor ()
Returns this class'sNestedDescriptorsingleton-instance. class / type.- Code:
- Exact Method Body:
return singleton.descriptor();
-
-