Package org.jitterbit.integration.activity

Examples of org.jitterbit.integration.activity.ActivitySubjectType


        entity = e;
        // HACK: If entrires are requested for the Operations root, we treat it identical to
        // requesting the logs for the whole project. What we really need to do is to treat
        // the root folders the same way as other folders, i.e. they are part of the project
        // both on the client side and on the server side.
        ActivitySubjectType type;
        KongaID guid;
        if (e instanceof RootFolder) {
            guid = e.getParent().getID();
            type = ActivitySubjectType.PROJECT;
        } else if (e instanceof SalesforceWizardEntity) {
View Full Code Here


    }

    protected abstract ActivityPage createNewPage(ActivitySubject subject);

    private static Icon getSubjectIcon(ActivitySubject subject) {
        ActivitySubjectType subjectType = subject.getId().getType();
        if (subjectType == ActivitySubjectType.SERVER) {
            return ClientIcons.SERVER_16;
        }
        EntityType entityType = ActivityUtils.toEntityType(subjectType);
        if (entityType != null) {
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.activity.ActivitySubjectType

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.