Following is the annotation code
public @interface ColumnName {
String value();
String datatype();
}
I would like to make datatype an optional parameter, for example
@ColumnName(value="password")
should be a valid code.
Following is the annotation code
public @interface ColumnName {
String value();
String datatype();
}
I would like to make datatype an optional parameter, for example
@ColumnName(value="password")
should be a valid code.