Package com.sun.enterprise.deployment.node.ejb

Examples of com.sun.enterprise.deployment.node.ejb.AroundTimeoutNode


    protected void writeAroundTimeoutDescriptors
        (Node parentNode, Iterator aroundTimeoutDescs) {
        if (aroundTimeoutDescs == null || !aroundTimeoutDescs.hasNext())
            return;

        AroundTimeoutNode subNode = new AroundTimeoutNode();
        for(; aroundTimeoutDescs.hasNext();) {
            LifecycleCallbackDescriptor next =
                (LifecycleCallbackDescriptor) aroundTimeoutDescs.next();
            subNode.writeDescriptor(parentNode,
                                    EjbTagNames.AROUND_TIMEOUT_METHOD, next);
        }

    }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.deployment.node.ejb.AroundTimeoutNode

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.