FileDocCategorySizeDatePackage
SessionSynchronizationInterface.javaAPI DocGlassfish v2 API6396Fri May 04 22:34:06 BST 2007com.sun.enterprise.tools.verifier.tests.ejb.session

SessionSynchronizationInterface

public class SessionSynchronizationInterface extends com.sun.enterprise.tools.verifier.tests.ejb.EjbTest implements com.sun.enterprise.tools.verifier.tests.ejb.EjbCheck
Optionally implements the SessionSynchronization Interface test. The optional SessionSynchronization interface may be implemented only by a stateful Session Bean using container-managed transactions. The SessionSynchronization interface must not be implemented by a stateless Session Bean.

Fields Summary
Constructors Summary
Methods Summary
public Resultcheck(com.sun.enterprise.deployment.EjbDescriptor descriptor)
Optionally implements the SessionSynchronization Interface test. The optional SessionSynchronization interface may be implemented only by a stateful Session Bean using container-managed transactions. The SessionSynchronization interface must not be implemented by a stateless Session Bean.

param
descriptor the Enterprise Java Bean deployment descriptor
return
Result the results for this assertion


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

        if (descriptor instanceof EjbSessionDescriptor) {
            String stateType = ((EjbSessionDescriptor)descriptor).getSessionType();
            try {
                Class c = Class.forName(descriptor.getEjbClassName(), false, getVerifierContext().getClassLoader());
                // walk up the class tree
                do {
                    //Class[] interfaces = c.getInterfaces();
                    //for (int i = 0; i < interfaces.length; i++) {
                    for(Class interfaces : c.getInterfaces()) {
                        logger.log(Level.FINE, getClass().getName() + ".debug1",
                                new Object[] {interfaces.getName()});

                        if (interfaces.getName().equals("javax.ejb.SessionSynchronization") ) {
                            String transactionType = descriptor.getTransactionType();
                            if ((EjbSessionDescriptor.STATELESS.equals(stateType)) ||
                                    ((EjbSessionDescriptor.STATEFUL.equals(stateType))
                                            && EjbSessionDescriptor.BEAN_TRANSACTION_TYPE
                                            .equals(transactionType) )) {
                                addErrorDetails(result, compName);
                                result.failed(smh.getLocalString
                                        (getClass().getName() + ".failed",
                                        "Error: [ {0} ] does not properly implement the SessionSynchronization interface. " +
                                        " SessionSynchronization interface must not be implemented by a stateless Session Bean. " +
                                        "[ {1} ] is not a valid bean.",
                                        new Object[] {descriptor.getEjbClassName(),descriptor.getEjbClassName()}));
                                break;

                            }
                        }
                    }
                } while ((c=c.getSuperclass()) != null);

            } catch (ClassNotFoundException e) {
                Verifier.debug(e);
                result.addErrorDetails(smh.getLocalString
                        ("tests.componentNameConstructor",
                                "For [ {0} ]",
                                new Object[] {compName.toString()}));
                result.failed(smh.getLocalString
                        (getClass().getName() + ".failedException",
                                "Error: [ {0} ] class not found.",
                                new Object[] {descriptor.getEjbClassName()}));
            }
        }

        if (result.getStatus()!=Result.FAILED) {
            addGoodDetails(result, compName);
            result.passed(smh.getLocalString(getClass().getName() + ".passed",
                    "The required interface is properly implemented"));
        }
        return result;