summaryrefslogtreecommitdiffstats
path: root/infra/impl/src/main/java/org/opendaylight/yang/gen/v1/urn/opendaylight/params/xml/ns/yang/honeycomb/impl/rev141210/NetconfBindingBrokerModule.java
blob: 4666e116628717ca17abda12c4f892a58748ac13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
package org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.honeycomb.impl.rev141210;

import org.opendaylight.controller.md.sal.binding.api.DataBroker;
import org.opendaylight.controller.md.sal.common.api.routing.RouteChangeListener;
import org.opendaylight.controller.sal.binding.api.BindingAwareBroker;
import org.opendaylight.controller.sal.binding.api.BindingAwareConsumer;
import org.opendaylight.controller.sal.binding.api.BindingAwareProvider;
import org.opendaylight.controller.sal.binding.api.BindingAwareService;
import org.opendaylight.controller.sal.binding.api.rpc.RpcContextIdentifier;
import org.opendaylight.yangtools.concepts.ListenerRegistration;
import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
import org.opendaylight.yangtools.yang.binding.RpcService;
import org.osgi.framework.BundleContext;

public class NetconfBindingBrokerModule extends AbstractNetconfBindingBrokerModule {
    public NetconfBindingBrokerModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver) {
        super(identifier, dependencyResolver);
    }

    public NetconfBindingBrokerModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver, NetconfBindingBrokerModule oldModule, java.lang.AutoCloseable oldInstance) {
        super(identifier, dependencyResolver, oldModule, oldInstance);
    }

    @Override
    public void customValidation() {
        // add custom validation form module attributes here.
    }

    @Override
    public java.lang.AutoCloseable createInstance() {
        return new FakeBindingAwareBroker(getNetconfBindingBrokerDependency());
    }

    public static final class FakeBindingAwareBroker implements BindingAwareBroker, AutoCloseable {

        private DataBroker netconfBindingBrokerDependency;

        public FakeBindingAwareBroker(final DataBroker netconfBindingBrokerDependency) {

            this.netconfBindingBrokerDependency = netconfBindingBrokerDependency;
        }

        @Deprecated
        @Override
        public ConsumerContext registerConsumer(final BindingAwareConsumer bindingAwareConsumer,
                                                final BundleContext bundleContext) {
            throw new UnsupportedOperationException("Unsupported");
        }

        @Override
        public ConsumerContext registerConsumer(final BindingAwareConsumer bindingAwareConsumer) {
            final ConsumerContext consumerContext = new ConsumerContext() {
                @Override
                public <T extends BindingAwareService> T getSALService(final Class<T> aClass) {
                    return aClass.equals(DataBroker.class)
                        ? (T) netconfBindingBrokerDependency
                        : null;
                }

                @Override
                public <T extends RpcService> T getRpcService(final Class<T> aClass) {
                    return null;
                }
            };
            bindingAwareConsumer.onSessionInitialized(consumerContext);
            return consumerContext;
        }

        @Override
        public ProviderContext registerProvider(final BindingAwareProvider bindingAwareProvider,
                                                final BundleContext bundleContext) {
            throw new UnsupportedOperationException("Unsupported");
        }

        @Override
        public ProviderContext registerProvider(final BindingAwareProvider bindingAwareProvider) {
            final ProviderContext context = new ProviderContext() {
                @Override
                public <L extends RouteChangeListener<RpcContextIdentifier, InstanceIdentifier<?>>> ListenerRegistration<L> registerRouteChangeListener(
                    final L l) {
                    throw new UnsupportedOperationException("Unsupported");
                }

                @Override
                public <T extends RpcService> T getRpcService(final Class<T> aClass) {
                    throw new UnsupportedOperationException("Unsupported");
                }

                @Override
                public <T extends RpcService> RpcRegistration<T> addRpcImplementation(final Class<T> aClass, final T t)
                    throws IllegalStateException {
                    throw new UnsupportedOperationException("Unsupported");
                }

                @Override
                public <T extends RpcService> RoutedRpcRegistration<T> addRoutedRpcImplementation(
                    final Class<T> aClass, final T t) throws IllegalStateException {
                    throw new UnsupportedOperationException("Unsupported");
                }

                @Override
                public <T extends BindingAwareService> T getSALService(final Class<T> aClass) {
                    return aClass.equals(DataBroker.class)
                        ? (T) netconfBindingBrokerDependency
                        : null;                }
            };
            bindingAwareProvider.onSessionInitiated(context);
            return context;
        }

        @Override
        public void close() throws Exception {
            netconfBindingBrokerDependency = null;
        }
    }
}