This is an automated email from the ASF dual-hosted git repository.
jamesbognar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/juneau.git
The following commit(s) were added to refs/heads/master by this push:
new 3858884 Remove deprecated code.
3858884 is described below
commit 3858884d2f13af18745ae8286ec9dc1245a6c1ef
Author: JamesBognar <[email protected]>
AuthorDate: Fri Oct 16 10:27:31 2020 -0400
Remove deprecated code.
---
.../apache/juneau/annotation/UriAnnotation.java | 32 ++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/annotation/UriAnnotation.java
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/annotation/UriAnnotation.java
index 84129b0..5cdfa72 100644
---
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/annotation/UriAnnotation.java
+++
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/annotation/UriAnnotation.java
@@ -13,6 +13,7 @@
package org.apache.juneau.annotation;
import java.lang.annotation.*;
+import java.lang.reflect.*;
import org.apache.juneau.*;
@@ -36,5 +37,36 @@ public class UriAnnotation extends
TargetedAnnotation.OnClassMethodField impleme
}
// <FluentSetters>
+
+ @Override /* GENERATED - TargetedAnnotation */
+ public UriAnnotation on(String...value) {
+ super.on(value);
+ return this;
+ }
+
+ @Override /* GENERATED - OnClass */
+ public UriAnnotation on(java.lang.Class<?>...value) {
+ super.on(value);
+ return this;
+ }
+
+ @Override /* GENERATED - OnClass */
+ public UriAnnotation onClass(java.lang.Class<?>...value) {
+ super.onClass(value);
+ return this;
+ }
+
+ @Override /* GENERATED - OnClassMethodField */
+ public UriAnnotation on(Field...value) {
+ super.on(value);
+ return this;
+ }
+
+ @Override /* GENERATED - OnClassMethodField */
+ public UriAnnotation on(Method...value) {
+ super.on(value);
+ return this;
+ }
+
// </FluentSetters>
}