Package org.jitterbit.integration.activity.ui

Examples of org.jitterbit.integration.activity.ui.EntireSystemSubject


    private ActivitySubject getEntrySubject(IntegrationEntity entity) throws IllegalArgumentException {
        if (entity instanceof RootFolder) {
            EntityType itemType = ((RootFolder) entity).getItemType();
            if (itemType == EntityType.Project) {
                return new EntireSystemSubject();
            }
        }
        return IntegrationEntityActivitySubject.create(entity);
    }
View Full Code Here


    }

    protected abstract ActivityPage createPage(ActivitySubject subject);

    private ActivityPage createPage(ServerConnectionService connectionService) {
        EntireSystemSubject subject = new EntireSystemSubject();
        subject.setServerConnectionService(connectionService);
        ActivityPage page = createPage(subject);
        return page;
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.activity.ui.EntireSystemSubject

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.