FileDocCategorySizeDatePackage
AppClientEjbRefNamePrefixed.javaAPI DocGlassfish v2 API4841Fri May 04 22:33:28 BST 2007com.sun.enterprise.tools.verifier.tests.appclient

AppClientEjbRefNamePrefixed

public class AppClientEjbRefNamePrefixed extends AppClientTest implements AppClientCheck
The application client ejb-ref-name element contains the name of an EJB reference. The EJB reference is an entry in the enterprise bean's environment. It is recommended that name is prefixed with "ejb/".

Fields Summary
Constructors Summary
Methods Summary
public Resultcheck(ApplicationClientDescriptor descriptor)
The application client ejb-ref-name element contains the name of an EJB reference. The EJB reference is an entry in the enterprise bean's environment. It is recommended that name is prefixed with "ejb/".

param
descriptor the app-client deployment descriptor
return
Result the results for this assertion

	Result result = getInitializedResult();
ComponentNameConstructor compName = getVerifierContext().getComponentNameConstructor();

	boolean oneWarning = false;
	if (!descriptor.getEjbReferenceDescriptors().isEmpty()) {
	    for (Iterator itr = descriptor.getEjbReferenceDescriptors().iterator();
		 itr.hasNext();) {
		EjbReferenceDescriptor nextEjbReference = (EjbReferenceDescriptor) itr.next();
		String ejbRefName = nextEjbReference.getName();

		if (ejbRefName.startsWith("ejb/")) {
		    result.addGoodDetails(smh.getLocalString
				       ("tests.componentNameConstructor",
					"For [ {0} ]",
					new Object[] {compName.toString()}));
		    result.addGoodDetails
			(smh.getLocalString
			 (getClass().getName() + ".passed",
			  "[ {0} ] is prefixed with recommended string \"ejb/\" within application client [ {1} ]",
			  new Object[] {ejbRefName,descriptor.getName()}));
		}  else {
		    if (!oneWarning) {
			oneWarning = true;
		    }
		    result.addWarningDetails(smh.getLocalString
				       ("tests.componentNameConstructor",
					"For [ {0} ]",
					new Object[] {compName.toString()}));
		    result.addWarningDetails
			(smh.getLocalString
			 (getClass().getName() + ".warning",
			  "Warning: [ {0} ] is not prefixed with recommended string \"ejb/\" within application client [ {1} ]",
			  new Object[] {ejbRefName,descriptor.getName()}));
		}
	    }
	    if (oneWarning) {
		result.setStatus(Result.WARNING);
	    } else {
		result.setStatus(Result.PASSED);
	    }
	} else {
	    result.addNaDetails(smh.getLocalString
				       ("tests.componentNameConstructor",
					"For [ {0} ]",
					new Object[] {compName.toString()}));
	    result.notApplicable(smh.getLocalString
				 (getClass().getName() + ".notApplicable",
				  "There are no ejb references to other beans within this application client [ {0} ]",
				  new Object[] {descriptor.getName()}));
	}
	return result;