blob: b36d4bbd750fe52e5bd5d89e053775c839759fd9 [file] [log] [blame]
package org.apache.airavata.custos.vault.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface VaultPath {
public String name();
public String path();
public boolean required() default false;
}