summaryrefslogtreecommitdiff
path: root/src/main/java/au/id/zancanaro/annotations
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/au/id/zancanaro/annotations')
-rw-r--r--src/main/java/au/id/zancanaro/annotations/DataSource.java11
-rw-r--r--src/main/java/au/id/zancanaro/annotations/Property.java13
-rw-r--r--src/main/java/au/id/zancanaro/annotations/Seed.java12
3 files changed, 0 insertions, 36 deletions
diff --git a/src/main/java/au/id/zancanaro/annotations/DataSource.java b/src/main/java/au/id/zancanaro/annotations/DataSource.java
deleted file mode 100644
index 9fe255b..0000000
--- a/src/main/java/au/id/zancanaro/annotations/DataSource.java
+++ /dev/null
@@ -1,11 +0,0 @@
-package au.id.zancanaro.annotations;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-@Target({ElementType.FIELD})
-@Retention(RetentionPolicy.RUNTIME)
-public @interface DataSource {
-}
diff --git a/src/main/java/au/id/zancanaro/annotations/Property.java b/src/main/java/au/id/zancanaro/annotations/Property.java
deleted file mode 100644
index f750596..0000000
--- a/src/main/java/au/id/zancanaro/annotations/Property.java
+++ /dev/null
@@ -1,13 +0,0 @@
-package au.id.zancanaro.annotations;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-@Target(ElementType.METHOD)
-@Retention(RetentionPolicy.RUNTIME)
-public @interface Property {
- int maxSize() default 100;
- int runs() default 100;
-}
diff --git a/src/main/java/au/id/zancanaro/annotations/Seed.java b/src/main/java/au/id/zancanaro/annotations/Seed.java
deleted file mode 100644
index 99f00ca..0000000
--- a/src/main/java/au/id/zancanaro/annotations/Seed.java
+++ /dev/null
@@ -1,12 +0,0 @@
-package au.id.zancanaro.annotations;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-@Target(ElementType.METHOD)
-@Retention(RetentionPolicy.RUNTIME)
-public @interface Seed {
- long value();
-}