Examples of KongaID


Examples of org.jitterbit.util.id.KongaID

        // 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) {
            guid = ((SalesforceWizardEntity) e).getImplementingOperationId();
View Full Code Here

Examples of org.jitterbit.util.id.KongaID

        addPropertyChangeListener(new ModificationListener());
    }

    @Override
    public IntegrationEntityId getID() {
        KongaID id = super.getID();
        if (id instanceof IntegrationEntityId) {
            return (IntegrationEntityId) id;
        }
        IntegrationEntityId eId = createNewID();
        setID(eId);
View Full Code Here

Examples of org.jitterbit.util.id.KongaID

     * If this method is overridden in a subclass, a call to <tt>super.setID(id)</tt> should
     * generally be the first instruction.
     *
     */
    protected void setID(KongaID id) {
        KongaID old = null;
        synchronized (getDataLock()) {
            if (!KongaID.areEqual(id, this.id)) {
                old = this.id;
                this.id = id;
            }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.