| author | Jaroslav Tulach <jtulach@netbeans.org> |
| Wed Jul 14 20:56:33 2010 +0200 | |
| branch | livedb |
| changeset 357 | 837370f791ba |
| parent 355 | d1e7424dc988 |
| child 361 | 6507a9474b6d |
| permissions | -rw-r--r-- |
1 package org.apidesign.livedb;
3 import java.lang.annotation.ElementType;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
6 import java.lang.annotation.Target;
8 /**
9 *
10 * @author Jaroslav Tulach <jtulach@netbeans.org>
11 */
12 @Target(ElementType.PACKAGE)
13 @Retention(RetentionPolicy.SOURCE)
14 public @interface LiveDB {
15 String url();
16 String user();
17 String password();
18 String query();
19 String classname();
20 }