Skip to main content
summaryrefslogtreecommitdiffstats
blob: fd031affeecfc888a1d499540f6480ca37e642b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*******************************************************************************
 * 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.List;

import org.eclipse.jem.java.JavaClass;
import org.eclipse.jem.java.Method;
import org.eclipse.jst.j2ee.ejb.EnterpriseBean;


public abstract interface IMethodType {
	public String getMethodName(EnterpriseBean bean, JavaClass clazz, Method method);

	public long getId();
	
	/**
	 * Return true if this method type is a default type for an enterprise bean's class.
	 * For example, if the method on the home is neither a create nor a find method, then
	 * it is assumed to be the default type, a home method.
	 */
	public boolean isDefaultType();
	
	public boolean isMethodType(EnterpriseBean bean, JavaClass clazz, Method method, List[] methodsExtendedLists);

	public String getMessageId_messageMissing(); // required method is missing
	public String getMessageId_messageExists(); // method should not exist
	public String getMessageId_messageRemoteException(); // method throws (or doesn't throw) RemoteException
	public String getMessageId_messageMissingMatching(); // method is missing its matching method on the bean class
	public String getMessageId_messageRMI_IIOPParm(); // parameter or return type is not a legal RMI-IIOP type
}

Back to the top