X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=org.argeo.api.uuid%2Fsrc%2Forg%2Fargeo%2Fapi%2Fuuid%2FUuidFactory.java;fp=org.argeo.api.uuid%2Fsrc%2Forg%2Fargeo%2Fapi%2Fuuid%2FUuidFactory.java;h=ee5aa699472659127a4d40f1c3dbedaf6100490d;hb=f1ac0c0533b0e4e3dd9c7f9507031a074d5f44ed;hp=4ab6c2e4b754d7818be29a24fece361373b5f6e9;hpb=24e5791dd14e19afefa1d7e04783049955400289;p=lgpl%2Fargeo-commons.git diff --git a/org.argeo.api.uuid/src/org/argeo/api/uuid/UuidFactory.java b/org.argeo.api.uuid/src/org/argeo/api/uuid/UuidFactory.java index 4ab6c2e4b..ee5aa6994 100644 --- a/org.argeo.api.uuid/src/org/argeo/api/uuid/UuidFactory.java +++ b/org.argeo.api.uuid/src/org/argeo/api/uuid/UuidFactory.java @@ -14,7 +14,7 @@ import java.util.function.Supplier; * {@link Supplier#get()} method MUST be a v4 UUID (random). * * @see UUID - * @see https://datatracker.ietf.org/doc/html/rfc4122 + * @see "https://datatracker.ietf.org/doc/html/rfc4122" */ public interface UuidFactory extends Supplier { @@ -184,7 +184,7 @@ public interface UuidFactory extends Supplier { * Whether this UUID is time based but was not generated from an IEEE 802 * address, as per Section 4.5 of RFC4122. * - * @see https://datatracker.ietf.org/doc/html/rfc4122#section-4.5 + * @see "https://datatracker.ietf.org/doc/html/rfc4122#section-4.5" */ static boolean isTimeBasedWithMacAddress(UUID uuid) { if (uuid.version() == 1) { @@ -202,7 +202,7 @@ public interface UuidFactory extends Supplier { * The state of a time based UUID generator, as described and discussed in * section 4.2.1 of RFC4122. * - * @see https://datatracker.ietf.org/doc/html/rfc4122#section-4.2.1 + * @see "https://datatracker.ietf.org/doc/html/rfc4122#section-4.2.1" */ interface TimeUuidState { /** Current node id and clock sequence for this thread. */