Package org.openengsb.core.ekb.api

Examples of org.openengsb.core.ekb.api.ConnectorInformation


     * Converts the models of an EKBCommit to EDBObjects and return an object which contains the three corresponding
     * lists
     */
    public ConvertedCommit convertEKBCommit(EKBCommit commit) {
        ConvertedCommit result = new ConvertedCommit();
        ConnectorInformation information = commit.getConnectorInformation();
        result.setInserts(convertModelsToEDBObjects(commit.getInserts(), information));
        result.setUpdates(convertModelsToEDBObjects(commit.getUpdates(), information));
        result.setDeletes(convertModelsToEDBObjects(commit.getDeletes(), information));
        return result;
    }
View Full Code Here

TOP

Related Classes of org.openengsb.core.ekb.api.ConnectorInformation

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.