Package org.apache.openejb.jee

Examples of org.apache.openejb.jee.SessionType


public class BeanTypeComparisonTest {

    @Test
    public void testEqualsMethodForDifferentClassTypes() {
        final BeanType beanType = BeanType.STATELESS;
        final SessionType sessionType = SessionType.STATELESS;
        assertFalse(beanType.equals(sessionType));
    }
View Full Code Here


    @Test
    public void testEqualsMethodForDifferentClassTypes()
    {
        BeanType beanType= BeanType.STATELESS;
        SessionType sessionType = SessionType.STATELESS;
        assertFalse(beanType.equals(sessionType));
    }
View Full Code Here

TOP

Related Classes of org.apache.openejb.jee.SessionType

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.