All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opendaylight.mdsal.binding.dom.adapter.RpcResultUtil Maven / Gradle / Ivy

There is a newer version: 14.0.2
Show newest version
/*
 * Copyright (c) 2018 Pantheon Technologies, s.r.o. and others.  All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
 * and is available at http://www.eclipse.org/legal/epl-v10.html
 */
package org.opendaylight.mdsal.binding.dom.adapter;

import java.util.Collection;
import org.eclipse.jdt.annotation.NonNullByDefault;
import org.eclipse.jdt.annotation.Nullable;
import org.opendaylight.mdsal.dom.api.DOMRpcResult;
import org.opendaylight.yangtools.yang.common.ErrorSeverity;
import org.opendaylight.yangtools.yang.common.RpcError;
import org.opendaylight.yangtools.yang.common.RpcResult;
import org.opendaylight.yangtools.yang.common.RpcResultBuilder;

/**
 * Utility methods for converting {@link RpcResult} to/from {@link DOMRpcResult}.
 */
@NonNullByDefault
final class RpcResultUtil {
    private RpcResultUtil() {
        // Hidden on purpose
    }

    /**
     * DOMRpcResult does not have a notion of success, hence we have to reverse-engineer it by looking at reported
     * errors and checking whether they are just warnings.
     */
    static  RpcResult rpcResultFromDOM(final Collection errors, final @Nullable T result) {
        return RpcResultBuilder.status(errors.stream().noneMatch(err -> err.getSeverity() == ErrorSeverity.ERROR))
            .withResult(result)
            .withRpcErrors(errors)
            .build();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy