Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.jst.j2ee.core/mofj2ee/org/eclipse/jst/j2ee/ejb/internal/util/MDBActivationConfigModelUtil.java')
-rw-r--r--plugins/org.eclipse.jst.j2ee.core/mofj2ee/org/eclipse/jst/j2ee/ejb/internal/util/MDBActivationConfigModelUtil.java52
1 files changed, 0 insertions, 52 deletions
diff --git a/plugins/org.eclipse.jst.j2ee.core/mofj2ee/org/eclipse/jst/j2ee/ejb/internal/util/MDBActivationConfigModelUtil.java b/plugins/org.eclipse.jst.j2ee.core/mofj2ee/org/eclipse/jst/j2ee/ejb/internal/util/MDBActivationConfigModelUtil.java
deleted file mode 100644
index 52451520f..000000000
--- a/plugins/org.eclipse.jst.j2ee.core/mofj2ee/org/eclipse/jst/j2ee/ejb/internal/util/MDBActivationConfigModelUtil.java
+++ /dev/null
@@ -1,52 +0,0 @@
-/*
- * Created on Jan 30, 2005
- *
- * TODO To change the template for this generated file go to
- * Window - Preferences - Java - Code Style - Code Templates
- */
-package org.eclipse.jst.j2ee.ejb.internal.util;
-
-import java.util.HashMap;
-
-/**
- * @author vijayb
- *
- * TODO To change the template for this generated type comment go to
- * Window - Preferences - Java - Code Style - Code Templates
- */
-public class MDBActivationConfigModelUtil {
-
- public static HashMap activationConfigMap;
-
- public static final String ackModeKey = "acknowledgeMode"; //$NON-NLS-1$
-
- public static final String destinationTypeKey = "destinationType";//$NON-NLS-1$
-
- public static final String durabilityKey = "subscriptionDurability";//$NON-NLS-1$
-
- public static final String messageSelectorKey = "messageSelector";//$NON-NLS-1$
-
- public static final String[] ackModeValues = new String[] { "Auto-acknowledge", "Dups-ok-acknowledge" }; //$NON-NLS-1$ //$NON-NLS-2$
-
- public static final String[] destinationTypeValues = new String[] { "javax.jms.Queue", "javax.jms.Topic" };//$NON-NLS-1$ //$NON-NLS-2$
-
- public static final String[] durabilityValue = new String[] { "Durable", "NonDurable" };//$NON-NLS-1$ //$NON-NLS-2$
-
- /**
- *
- */
- public MDBActivationConfigModelUtil() {
- super();
- // TODO Auto-generated constructor stub
- }
-
- public static HashMap createStandardActivationConfigMap() {
- activationConfigMap = new HashMap();
- activationConfigMap.put(ackModeKey, ackModeValues);
- activationConfigMap.put(destinationTypeKey, destinationTypeValues);
- activationConfigMap.put(durabilityKey, durabilityValue);
- activationConfigMap.put(messageSelectorKey, ""); //$NON-NLS-1$
- return activationConfigMap;
- }
-
-}

Back to the top