org.opendaylight.jsonrpc.binding.RpcInvocationAdapter Maven / Gradle / Ivy
/*
* Copyright (c) 2018 Lumina Networks, Inc. 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.jsonrpc.binding;
import org.opendaylight.mdsal.binding.dom.codec.api.BindingNormalizedNodeSerializer;
import org.opendaylight.mdsal.binding.runtime.api.BindingRuntimeContext;
import org.opendaylight.yangtools.concepts.ObjectRegistration;
import org.opendaylight.yangtools.yang.binding.RpcService;
import org.opendaylight.yangtools.yang.model.api.SchemaContext;
public interface RpcInvocationAdapter {
SchemaChangeAwareConverter converter();
BindingNormalizedNodeSerializer codec();
ObjectRegistration registerImpl(Class type, T impl);
SchemaContext schemaContext();
BindingRuntimeContext getRuntimeContext();
}