com.atlassian.bamboo.specs.api.codegen.annotations.SkipCodeGen Maven / Gradle / Ivy
package com.atlassian.bamboo.specs.api.codegen.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Indicates that a field should be skipped during code generation.
* This annotation should be added to fields that are derived from other fields.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface SkipCodeGen {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy