|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |
@Retention(value=RUNTIME) @Target(value=METHOD) public @interface DatabaseChangeProperty
Annotation used by AbstractChange
to declare ChangeParameterMetaData
information.
The annotation should be placed on the read method.
This annotation should not be checked for outside AbstractChange, if any code is trying to determine the
metadata provided by this annotation, it should get it from liquibase.change.Change#getChangeMetaData()
Optional Element Summary | |
---|---|
String |
description
Value to put into ChangeParameterMetaData.getDescription() |
String |
exampleValue
Value to put into liquibase.change.ChangeParameterMetaData#getExampleValue() |
boolean |
isChangeProperty
If false, this field or method will not be included in |
String |
mustEqualExisting
Value to put into ChangeParameterMetaData.getMustEqualExisting() |
String[] |
requiredForDatabase
Value to put into ChangeParameterMetaData.getRequiredForDatabase() |
LiquibaseSerializable.SerializationType |
serializationType
Format to use when serializing this Change via a ChangeLogSerializer . |
String |
since
Value to put into liquibase.change.ChangeParameterMetaData#getExampleValue() |
String[] |
supportsDatabase
Value to put into ChangeParameterMetaData.getSupportedDatabases() |
public abstract String description
ChangeParameterMetaData.getDescription()
public abstract String exampleValue
liquibase.change.ChangeParameterMetaData#getExampleValue()
public abstract String since
liquibase.change.ChangeParameterMetaData#getExampleValue()
public abstract boolean isChangeProperty
public abstract String[] requiredForDatabase
ChangeParameterMetaData.getRequiredForDatabase()
public abstract String[] supportsDatabase
ChangeParameterMetaData.getSupportedDatabases()
public abstract String mustEqualExisting
ChangeParameterMetaData.getMustEqualExisting()
public abstract LiquibaseSerializable.SerializationType serializationType
ChangeLogSerializer
.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |