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

com.plivo.api.validators.MultipleValidIntegers Maven / Gradle / Ivy

Go to download

A Java SDK to make voice calls & send SMS using Plivo and to generate Plivo XML

There is a newer version: 5.46.0
Show newest version
package com.plivo.api.validators;

import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import static java.lang.annotation.ElementType.FIELD;

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


@Target({FIELD, PARAMETER})
@Retention(value = RUNTIME)
public @interface MultipleValidIntegers {

  /**
   * @return error message to return when validation fails
   */
  String message() default "value must be either integer or string containing integers separated by delimiter '<' ";

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy