Skip to content

Commit 50fb7b3

Browse files
Merge pull request #56 from groupdocs-annotation/release_23.2
fix for release 23.2
2 parents 785c69c + 6586fbe commit 50fb7b3

File tree

63 files changed

+303
-191
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+303
-191
lines changed

Demos/Dropwizard/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
![Groupdocs document & pdf annotator](https://raw.githubusercontent.com/groupdocs-annotation/groupdocs-annotation.github.io/master/resources/image/banner.png "GroupDocs.Annotation")
22
# GroupDocs.Annotation for Java Dropwizard Example
3-
###### version 1.12.24
3+
###### version 1.12.25
44

55
[![GitHub license](https://img.shields.io/github/license/groupdocs-annotation/GroupDocs.Annotation-for-Java-Dropwizard.svg)](https://github.com/groupdocs-annotation/GroupDocs.Annotation-for-Java-Dropwizard/blob/master/LICENSE)
66

@@ -123,10 +123,10 @@ Download [latest release](https://github.com/groupdocs-annotation/GroupDocs.Anno
123123
**Note**: This method is **recommended** for running this sample behind firewall.
124124

125125
```bash
126-
curl -J -L -o release.tar.gz https://github.com/groupdocs-annotation/GroupDocs.Annotation-for-Java-Dropwizard/releases/download/1.12.24/release.tar.gz
126+
curl -J -L -o release.tar.gz https://github.com/groupdocs-annotation/GroupDocs.Annotation-for-Java-Dropwizard/releases/download/1.12.25/release.tar.gz
127127
tar -xvzf release.tar.gz
128128
cd release
129-
java -jar annotation-1.12.24.jar configuration.yaml
129+
java -jar annotation-1.12.25.jar configuration.yaml
130130
## Open http://localhost:8080/annotation/ in your favorite browser.
131131
```
132132

Demos/Dropwizard/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.groupdocs.ui</groupId>
88
<artifactId>annotation</artifactId>
9-
<version>1.12.24</version>
9+
<version>1.12.25</version>
1010
<packaging>jar</packaging>
1111

1212
<name>GroupDocs.Annotation Dropwizard</name>
@@ -81,7 +81,7 @@
8181
<dependency>
8282
<groupId>com.groupdocs</groupId>
8383
<artifactId>groupdocs-annotation</artifactId>
84-
<version>21.7.2</version>
84+
<version>23.2</version>
8585
</dependency>
8686
<dependency>
8787
<groupId>javax.xml.bind</groupId>

Demos/Dropwizard/src/main/java/com/groupdocs/ui/annotation/annotator/AreaAnnotator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@ public AnnotationBase annotateDiagram() {
5050

5151
@Override
5252
protected int getType() {
53-
return AnnotationType.Area;
53+
return AnnotationType.AREA;
5454
}
5555
}

Demos/Dropwizard/src/main/java/com/groupdocs/ui/annotation/annotator/ArrowAnnotator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ protected Reply getAnnotationReplyInfo(CommentsEntity comment) {
6767

6868
@Override
6969
protected int getType() {
70-
return AnnotationType.Arrow;
70+
return AnnotationType.ARROW;
7171
}
7272

7373
@Override

Demos/Dropwizard/src/main/java/com/groupdocs/ui/annotation/annotator/DistanceAnnotator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ protected final AnnotationBase initAnnotationBaseDistanceAnnotator(AnnotationBas
7272

7373
@Override
7474
protected int getType() {
75-
return AnnotationType.Distance;
75+
return AnnotationType.DISTANCE;
7676
}
7777

7878
@Override

Demos/Dropwizard/src/main/java/com/groupdocs/ui/annotation/annotator/PointAnnotator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,6 @@ public AnnotationBase annotateDiagram() {
5151

5252
@Override
5353
protected int getType() {
54-
return AnnotationType.Point;
54+
return AnnotationType.POINT;
5555
}
5656
}

Demos/Dropwizard/src/main/java/com/groupdocs/ui/annotation/annotator/PolylineAnnotator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,6 @@ public AnnotationBase annotateDiagram() {
7474

7575
@Override
7676
protected int getType() {
77-
return AnnotationType.Polyline;
77+
return AnnotationType.POLYLINE;
7878
}
7979
}

Demos/Dropwizard/src/main/java/com/groupdocs/ui/annotation/annotator/ResourceRedactionAnnotator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@ public AnnotationBase annotateDiagram() {
5252

5353
@Override
5454
protected int getType() {
55-
return AnnotationType.ResourcesRedaction;
55+
return AnnotationType.RESOURCES_REDACTION;
5656
}
5757
}

Demos/Dropwizard/src/main/java/com/groupdocs/ui/annotation/annotator/TextFieldAnnotator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,6 @@ public AnnotationBase annotateDiagram() {
5656

5757
@Override
5858
protected int getType() {
59-
return AnnotationType.TextField;
59+
return AnnotationType.TEXT_FIELD;
6060
}
6161
}

Demos/Dropwizard/src/main/java/com/groupdocs/ui/annotation/annotator/TextHighlightAnnotator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@ public AnnotationBase annotateDiagram() {
5252

5353
@Override
5454
protected int getType() {
55-
return AnnotationType.TextHighlight;
55+
return AnnotationType.TEXT_HIGHLIGHT;
5656
}
5757
}

0 commit comments

Comments
 (0)