Joaquín Reñé
2025-10-07 146a0fb8b0e90f9196e569152f649baf60d6cc8f
securis/src/main/java/net/curisit/securis/RestServicesApplication.java
....@@ -1,3 +1,6 @@
1
+/*
2
+ * Copyright @ 2013 CurisTEC, S.A.S. All Rights Reserved.
3
+ */
14 package net.curisit.securis;
25
36 import java.util.HashSet;
....@@ -19,11 +22,25 @@
1922 import org.apache.logging.log4j.LogManager;
2023 import org.apache.logging.log4j.Logger;
2124
25
+/**
26
+* RestServicesApplication
27
+* <p>
28
+* JAX-RS application configuring the REST resource classes and interceptors.
29
+* Declares base path <code>/</code>.
30
+*
31
+* @author JRA
32
+* Last reviewed by JRA on Oct 5, 2025.
33
+*/
2234 @ApplicationPath("/")
2335 public class RestServicesApplication extends Application {
2436
2537 private static final Logger LOG = LogManager.getLogger(RestServicesApplication.class);
2638
39
+ /**
40
+ * getClasses
41
+ * <p>
42
+ * @return set of REST endpoints and filters to be registered by the runtime
43
+ */
2744 @Override
2845 public Set<Class<?>> getClasses() {
2946 Set<Class<?>> classes = new HashSet<>();