13 lines
300 B
Java
13 lines
300 B
Java
package com.cloudhandson.ddsbackoffice.domain;
|
|
|
|
import java.time.Instant;
|
|
|
|
/** Immutable fingerprint captured after a DDS grant publication or service baseline. */
|
|
public record DdsPublishedProtectionSpec(
|
|
String path,
|
|
String subjectKey,
|
|
String fingerprint,
|
|
Instant publishedAt
|
|
) {
|
|
}
|