package org.etk.orm.api.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Define the default value of a property. * */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface DefaultValue { /** * Returns the list of property values as string format. * * @return the list of property values */ String[] value() default {}; }