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

org.liquibase.maven.property.PropertyElement Maven / Gradle / Ivy

There is a newer version: 4.30.0
Show newest version
package org.liquibase.maven.property;

import java.lang.annotation.*;

/**
 * Annotation used at the field level that indicates that field is liquibase property element
 */
@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface PropertyElement {

    /**
     * Specify key if field name is not corresponded to liquibase property key name
     */
    String key() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy