diff -r 6507a9474b6d -r 0e707eef1e4a samples/livedb/src/main/java/org/apidesign/livedb/LiveDB.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/samples/livedb/src/main/java/org/apidesign/livedb/LiveDB.java Tue Nov 12 08:55:35 2019 +0100 @@ -0,0 +1,22 @@ +package org.apidesign.livedb; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +/** + * + * @author Jaroslav Tulach + */ +// BEGIN: livedb.connection.annotation +@Target(ElementType.PACKAGE) +@Retention(RetentionPolicy.SOURCE) +public @interface LiveDB { + String url(); + String user(); + String password(); + String query(); + String classname(); +} +// END: livedb.connection.annotation