14 lines
342 B
Java
14 lines
342 B
Java
package com.cloudhandson.ddsbackoffice.domain;
|
|
|
|
/** A deterministic document-visibility fixture; it never includes a bearer secret. */
|
|
public record DdsValidationFixture(
|
|
String fixtureId,
|
|
String path,
|
|
String subjectKey,
|
|
long applicationUserId,
|
|
String documentId,
|
|
boolean expectedVisible,
|
|
String description
|
|
) {
|
|
}
|