refactoring

This commit is contained in:
2023-03-29 17:38:50 +02:00
parent 3353b4deb7
commit 57cd27162d
4 changed files with 45 additions and 47 deletions
@@ -7,7 +7,7 @@ import java.lang.annotation.Target;
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface Config {
public @interface Configuration {
/**
* path of the configuration file
*/
@@ -15,5 +15,5 @@ public @interface Value {
*/
String name() default "";
String _default();
String standard();
}