Skip to content

Commit ff438c8

Browse files
committed
✨ Updated ConvertPdfService to use RestClient
1 parent 4c6d486 commit ff438c8

File tree

3 files changed

+471
-501
lines changed

3 files changed

+471
-501
lines changed

rest-services/client/src/main/java/com/_4point/aem/docservices/rest_services/client/RestClient.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ public record ContentType(String contentType) {
3535
public static final ContentType APPLICATION_PS = ContentType.of("application/postscript");
3636
public static final ContentType APPLICATION_TPCL = ContentType.of("application/vnd.toshiba-tpcl");
3737
public static final ContentType APPLICATION_ZPL = ContentType.of("x-application/zpl");
38+
public static final ContentType IMAGE_JPEG = ContentType.of("image/jpeg");
39+
public static final ContentType IMAGE_PNG = ContentType.of("image/png");
40+
public static final ContentType IMAGE_TIFF = ContentType.of("image/tiff");
3841

3942
public static ContentType of(String contentType) { return new ContentType(contentType); }
4043
};

0 commit comments

Comments
 (0)