Jakarta EE namespace transition in annotation scanner

Signed-off-by: Gaurav Gupta <gaurav.gupta@payara.fish>
diff --git a/appserver/deployment/dol/src/main/java/com/sun/enterprise/deployment/annotation/introspection/AppClientPersistenceDependencyAnnotationScanner.java b/appserver/deployment/dol/src/main/java/com/sun/enterprise/deployment/annotation/introspection/AppClientPersistenceDependencyAnnotationScanner.java
index 309826c..0bd73c4 100644
--- a/appserver/deployment/dol/src/main/java/com/sun/enterprise/deployment/annotation/introspection/AppClientPersistenceDependencyAnnotationScanner.java
+++ b/appserver/deployment/dol/src/main/java/com/sun/enterprise/deployment/annotation/introspection/AppClientPersistenceDependencyAnnotationScanner.java
@@ -31,8 +31,8 @@
 public class AppClientPersistenceDependencyAnnotationScanner extends AbstractAnnotationScanner {
 
     protected void init(java.util.Set<String> annotationsSet) {
-        annotationsSet.add("Ljavax/persistence/PersistenceUnit");
-        annotationsSet.add("Ljavax/persistence/PersistenceUnits");
+        annotationsSet.add("Ljakarta/persistence/PersistenceUnit");
+        annotationsSet.add("Ljakarta/persistence/PersistenceUnits");
     }
     
 }
diff --git a/appserver/deployment/dol/src/main/java/com/sun/enterprise/deployment/annotation/introspection/EjbComponentAnnotationScanner.java b/appserver/deployment/dol/src/main/java/com/sun/enterprise/deployment/annotation/introspection/EjbComponentAnnotationScanner.java
index 8d29ff7..2d6a155 100644
--- a/appserver/deployment/dol/src/main/java/com/sun/enterprise/deployment/annotation/introspection/EjbComponentAnnotationScanner.java
+++ b/appserver/deployment/dol/src/main/java/com/sun/enterprise/deployment/annotation/introspection/EjbComponentAnnotationScanner.java
@@ -59,10 +59,10 @@
     
     private void init() {
         annotations = new HashSet();
-        annotations.add("Ljavax/ejb/Stateless;");
-        annotations.add("Ljavax/ejb/Stateful;");
-        annotations.add("Ljavax/ejb/MessageDriven;");
-        annotations.add("Ljavax/ejb/Singleton;");
+        annotations.add("Ljakarta/ejb/Stateless;");
+        annotations.add("Ljakarta/ejb/Stateful;");
+        annotations.add("Ljakarta/ejb/MessageDriven;");
+        annotations.add("Ljakarta/ejb/Singleton;");
     }
 
     @Override
diff --git a/appserver/deployment/dol/src/main/java/com/sun/enterprise/deployment/annotation/introspection/ResourceAdapterAnnotationScanner.java b/appserver/deployment/dol/src/main/java/com/sun/enterprise/deployment/annotation/introspection/ResourceAdapterAnnotationScanner.java
index 05a87cd..651a75d 100644
--- a/appserver/deployment/dol/src/main/java/com/sun/enterprise/deployment/annotation/introspection/ResourceAdapterAnnotationScanner.java
+++ b/appserver/deployment/dol/src/main/java/com/sun/enterprise/deployment/annotation/introspection/ResourceAdapterAnnotationScanner.java
@@ -52,14 +52,14 @@
 
     private void init() {
         annotations = new HashSet();
-        annotations.add("Ljavax/resource/spi/Connector;");
-        annotations.add("Ljavax/resource/spi/AdministeredObject;");
-        annotations.add("Ljavax/resource/spi/Activation;");
-        annotations.add("Ljavax/resource/spi/AuthenticationMechanism;");
-        annotations.add("Ljavax/resource/spi/ConfigProperty;");
-        annotations.add("Ljavax/resource/spi/ConnectionDefinition;");
-        annotations.add("Ljavax/resource/spi/ConnectionDefinitions;");
-        annotations.add("Ljavax/resource/spi/SecurityPermission;");
+        annotations.add("Ljakarta/resource/spi/Connector;");
+        annotations.add("Ljakarta/resource/spi/AdministeredObject;");
+        annotations.add("Ljakarta/resource/spi/Activation;");
+        annotations.add("Ljakarta/resource/spi/AuthenticationMechanism;");
+        annotations.add("Ljakarta/resource/spi/ConfigProperty;");
+        annotations.add("Ljakarta/resource/spi/ConnectionDefinition;");
+        annotations.add("Ljakarta/resource/spi/ConnectionDefinitions;");
+        annotations.add("Ljakarta/resource/spi/SecurityPermission;");
     }
 
     @Override