MappingConstants.java 517 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Copyright (c) 2025. Andrew Grant Carrick Software. All rights reserved
  3. *
  4. */
  5. package scot.carricksoftware.grantswriter.constants;
  6. import org.springframework.stereotype.Component;
  7. @Component
  8. public class MappingConstants {
  9. private MappingConstants() {
  10. // to stop checkstyle complaining
  11. }
  12. public static final String FILES = "/files";
  13. public static final String TEX = "/tex";
  14. public static final String BUILD_PDF = "/pdf";
  15. public static final String PRINT = "/print";
  16. }