![JAR search and dependency download from the Maven repository](/logo.png)
org.cardanofoundation.explorer.consumercommon.validation.Lovelace Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ledger-sync-consumer-common Show documentation
Show all versions of ledger-sync-consumer-common Show documentation
Ledger Sync Consumer Common Module
The newest version!
package org.cardanofoundation.explorer.consumercommon.validation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import jakarta.validation.Constraint;
import jakarta.validation.Payload;
@Target({ ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Constraint(validatedBy = LovelaceValidator.class)
@Documented
public @interface Lovelace {
String message() default "The value must be Lovelace";
Class>[] groups() default { };
Class extends Payload>[] payload() default { };
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy