feat: record DDS protection evidence

This commit is contained in:
devmrko
2026-06-30 20:56:52 +09:00
parent f162851bc6
commit 22a7eda219
17 changed files with 985 additions and 18 deletions

View File

@@ -0,0 +1,12 @@
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
) {
}