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/j2ee-validation/org/eclipse/jst/j2ee/model/internal/validation/ValidateSessionRemote.java')
-rw-r--r--plugins/org.eclipse.jst.j2ee.core/j2ee-validation/org/eclipse/jst/j2ee/model/internal/validation/ValidateSessionRemote.java64
1 files changed, 64 insertions, 0 deletions
diff --git a/plugins/org.eclipse.jst.j2ee.core/j2ee-validation/org/eclipse/jst/j2ee/model/internal/validation/ValidateSessionRemote.java b/plugins/org.eclipse.jst.j2ee.core/j2ee-validation/org/eclipse/jst/j2ee/model/internal/validation/ValidateSessionRemote.java
new file mode 100644
index 000000000..68220649d
--- /dev/null
+++ b/plugins/org.eclipse.jst.j2ee.core/j2ee-validation/org/eclipse/jst/j2ee/model/internal/validation/ValidateSessionRemote.java
@@ -0,0 +1,64 @@
+/*******************************************************************************
+ * Copyright (c) 2001, 2004 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.jst.j2ee.model.internal.validation;
+
+
+import java.util.HashMap;
+import java.util.Map;
+
+
+
+
+/**
+ * Validates the remote interface of a Session bean.
+ */
+public class ValidateSessionRemote extends AValidateRemote implements IMessagePrefixEjb11Constants {
+ private static final String MSSGID = ".sr"; // In messages, to identify which message version belongs to the BMP bean class, this id is used. //$NON-NLS-1$
+ private static final String EXT = MSSGID + SPEC; // Extension to be used on non-method, non-field messages
+ private static final String BEXT = MSSGID + ON_BASE + SPEC; // Extension to be used on a method/field message when the method/field is inherited from a base type
+ private static final String MEXT = MSSGID + ON_THIS + SPEC; // Extension to be used on a method/field message when the method/field is implemented on the current type
+
+ private static final Object ID = IValidationRuleList.EJB11_SESSION_REMOTE;
+ private static final Object[] DEPENDS_ON = new Object[]{IValidationRuleList.EJB11_SESSION_BEANCLASS};
+ private static final Map MESSAGE_IDS;
+
+ static {
+ MESSAGE_IDS = new HashMap();
+
+ MESSAGE_IDS.put(CHKJ2012, new String[]{CHKJ2012+EXT});
+ MESSAGE_IDS.put(CHKJ2017, new String[]{CHKJ2017+EXT});
+
+ MESSAGE_IDS.put(CHKJ2023, new String[]{CHKJ2023+BEXT, CHKJ2023+MEXT});
+
+ MESSAGE_IDS.put(CHKJ2105, new String[]{CHKJ2105 + SPEC});
+
+ MESSAGE_IDS.put(CHKJ2412, new String[]{CHKJ2412+BEXT, CHKJ2412+MEXT});
+ MESSAGE_IDS.put(CHKJ2413, new String[]{CHKJ2413+BEXT, CHKJ2413+MEXT});
+ MESSAGE_IDS.put(CHKJ2414, new String[]{CHKJ2414+BEXT, CHKJ2414+MEXT});
+ MESSAGE_IDS.put(CHKJ2415, new String[]{CHKJ2415+BEXT, CHKJ2415+MEXT});
+
+ MESSAGE_IDS.put(CHKJ2041, new String[]{CHKJ2041}); // special case. Shared by all types.
+ MESSAGE_IDS.put(CHKJ2433, new String[]{CHKJ2433});
+ MESSAGE_IDS.put(CHKJ2907, new String[]{CHKJ2907});
+ }
+
+ public final Map getMessageIds() {
+ return MESSAGE_IDS;
+ }
+
+ public final Object[] getDependsOn() {
+ return DEPENDS_ON;
+ }
+
+ public final Object getId() {
+ return ID;
+ }
+}

Back to the top