All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.konduto.sdk.annotations.Required Maven / Gradle / Ivy

Go to download

Easily integrate with Konduto (https://konduto.com), a fraud prevention service.

There is a newer version: 2.17.4
Show newest version
package com.konduto.sdk.annotations;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 *
 * This annotation is used to mark required fields in {@link com.konduto.sdk.models.KondutoModel} instances.
 * @see com.konduto.sdk.models.KondutoModel#isValid()
 *
 */
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Required {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy