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

com.manywho.sdk.services.annotations.ActionInput Maven / Gradle / Ivy

There is a newer version: 1.25.0
Show newest version
package com.manywho.sdk.services.annotations;

import com.manywho.sdk.enums.ContentType;

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

@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface ActionInput {
    String name();
    ContentType contentType();
    boolean required() default true;
    Class referencedType() default void.class;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy